You are here

function masquerade_block_info in Masquerade 7

Implements hook_block_info().

File

./masquerade.module, line 556
The masquerade module allows administrators to masquerade as other user.

Code

function masquerade_block_info() {
  $blocks = array();
  $blocks['masquerade'] = array(
    'info' => t('Masquerade'),
    'cache' => DRUPAL_NO_CACHE,
  );
  return $blocks;
}