function drd_server_block_info in Drupal Remote Dashboard Server 7
Same name and namespace in other branches
- 7.2 drd_server.module \drd_server_block_info()
Implements hook_block_info().
File
- ./
drd_server.module, line 199
Code
function drd_server_block_info() {
$blocks = array();
if (module_exists('admin')) {
$blocks['drd'] = array(
'info' => t('Admin Extras Dashboard'),
'cache' => DRUPAL_CACHE_PER_ROLE,
'admin' => TRUE,
);
}
return $blocks;
}