Skip to content

Instantly share code, notes, and snippets.

@MattReimer
Created October 4, 2013 21:44
Show Gist options
  • Save MattReimer/6833291 to your computer and use it in GitHub Desktop.
Save MattReimer/6833291 to your computer and use it in GitHub Desktop.
Show contexts DEBUG helper
//Little helper to show our contexts
global $user;
if ($user->uid == 1 && $contexts = context_active_contexts() ) {
$msg = "Active Contexts: ";
foreach ($contexts as $key => $context) {
$msg .= "<label class='label round context'>" . $context->name . "</label>";
}
drupal_set_message( $msg, 'debug');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment