Skip to content

Instantly share code, notes, and snippets.

View angry-dan's full-sized avatar

Dan James angry-dan

  • Kent, United Kingdom
View GitHub Profile
@angry-dan
angry-dan / drupal_run_as.php
Created October 24, 2015 13:25 — forked from anonymous/drupal_run_as.php
Safely run a function in Drupal as another user.
<?php
function drupal_run_as($user, $func, $arg1) {
global $user;
$original_user = $user;
$old_state = drupal_save_session();
drupal_save_session(FALSE);
$args = func_get_args();
$user = array_shift($args);