Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 25th, 2012  |  syntax: None  |  size: 0.28 KB  |  hits: 14  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. /**
  2.  * Implements hook_block_view_MODULE_DELTA_alter().
  3.  */
  4. function ex_user_block_view_masquerade_masquerade_alter(&$data, $block) {
  5.   // Allow the block to be hidden using a conf variable.
  6.   if (!variable_get('ex_user_show_masquerade_block', 1)) {
  7.     $data = array();
  8.     return;
  9.   }