function akamai_block_info in Akamai 7
Same name and namespace in other branches
- 8 akamai.module \akamai_block_info()
- 8.2 akamai.module \akamai_block_info()
- 7.3 akamai.module \akamai_block_info()
- 7.2 akamai.module \akamai_block_info()
Implementation of hook_block_info().
File
- ./
akamai.module, line 98 - akamai.module Integration with the Akamai CDN Cache Control Web Service.
Code
function akamai_block_info() {
$blocks['akamai'] = array(
'info' => t('Akamai Cache Control'),
'cache' => DRUPAL_NO_CACHE,
);
return $blocks;
}