You are here

function authcache_example_block_view in Authenticated User Page Caching (Authcache) 7

File

modules/authcache_example/authcache_example.module, line 134
authcache_example.module

Code

function authcache_example_block_view($delta = '') {
  switch ($delta) {
    case 'example':
      $block['subject'] = '';
      $block['content'] = authcache_example_display_block_example();
      break;
  }
  return $block;
}