function esi_block_block_view in ESI: Edge Side Includes 7.3
Implements hook_block_view().
File
- modules/
esi_block/ esi_block.module, line 84 - ESI handler for blocks.
Code
function esi_block_block_view($delta) {
// At this stage, the region where the block is being rendered isn't
// provided. Return an empty content value, and the content will be
// populated once hook_block_view_alter() is invoked.
return array(
'content' => array(
'#markup' => '',
),
);
}