You are here

function related_blog_block_list in Util 6.3

Function for related_blog_block(op = 'list').

1 call to related_blog_block_list()
related_blog_block in contribs/related_blog/related_blog.module
Implements hook_block();

File

contribs/related_blog/related_blog.module, line 30
Provides block to show blog of node's author.

Code

function related_blog_block_list() {
  return array(
    'related_blog' => array(
      'info' => t('Util: Related Blog'),
      'visibility' => 1,
      /* Show only on. */
      'pages' => 'node/*',
      'cache' => BLOCK_NO_CACHE,
    ),
  );
}