function panels_customerror_block_info in Panels Custom Error 7
Implements hook_block_info().
File
- ./
panels_customerror.module, line 12
Code
function panels_customerror_block_info() {
$blocks['403'] = array(
'info' => t('Access Denied Message'),
'cache' => DRUPAL_CACHE_PER_PAGE,
);
$blocks['404'] = array(
'info' => t('Page not found Message'),
'cache' => DRUPAL_CACHE_PER_PAGE,
);
return $blocks;
}