function logged_in_block_info in Util 7
Implementation of hook_block_info(). Get the list of the blocks.
Parameters
none.:
Return value
array containing the title ("info") of the block.
File
- contribs/
logged_in/ logged_in.module, line 18  - Adds a "Logged In As" block.
 
Code
function logged_in_block_info() {
  return array(
    'logged_in' => array(
      'info' => t('Util: Logged in as'),
      'cache' => DRUPAL_CACHE_PER_USER,
    ),
  );
}