You are here

function akamai_block_info in Akamai 7

Same name and namespace in other branches
  1. 8 akamai.module \akamai_block_info()
  2. 8.2 akamai.module \akamai_block_info()
  3. 7.3 akamai.module \akamai_block_info()
  4. 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;
}