You are here

function rc_assets_test_block_view in Render cache 7.2

Implements hook_block_view().

File

tests/modules/rc_assets_test/rc_assets_test.module, line 22

Code

function rc_assets_test_block_view($delta = '') {
  $block = array();
  $name = str_replace('rc_assets_test_', '', $delta);
  $block['subject'] = t('RC Assets Block: ' . $name);
  $block['content'] = _rc_assets_test_view_block($name);
  return $block;
}