You are here

function authcache_example_block_info in Authenticated User Page Caching (Authcache) 7

Implements hook_block()

File

modules/authcache_example/authcache_example.module, line 122
authcache_example.module

Code

function authcache_example_block_info() {
  $blocks['example'] = array(
    'info' => t('Authcache Example Block'),
    'weight' => 10,
    'status' => 1,
    'region' => 'sidebar_first',
    'cache' => DRUPAL_NO_CACHE,
  );
  return $blocks;
}