function related_blog_block_info in Util 7
Implements hook_block_info();
File
- contribs/
related_blog/ related_blog.module, line 10 - Provides block to show blog of node's author.
Code
function related_blog_block_info() {
return array(
'related_blog' => array(
'info' => t('Util: Related Blog'),
'visibility' => BLOCK_VISIBILITY_LISTED,
// Show only on...
'pages' => 'node/*',
// Node pages.
'cache' => DRUPAL_NO_CACHE,
),
);
}