You are here

function related_blog_install in Util 7

Same name and namespace in other branches
  1. 6.3 contribs/related_blog/related_blog.install \related_blog_install()

Implements hook_install();

File

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

Code

function related_blog_install() {

  // Ignore Coder message on url.
  drupal_set_message(st('The Related Blog module has been installed. You should go to the <a href="!url">block administration page</a> and configure the block.', array(
    '!url' => url('admin/structure/block'),
  )));
  return;
}