You are here

related_blog.install in Util 6.3

Same filename and directory in other branches
  1. 7 contribs/related_blog/related_blog.install

Provides block to show blog of node's author.

File

contribs/related_blog/related_blog.install
View source
<?php

/**
 * @file
 * Provides block to show blog of node's author.
 */

/**
 * Implements hook_install();
 */
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/build/block'),
  )));
  return;
}

Functions

Namesort descending Description
related_blog_install Implements hook_install();