You are here

related_blog.install in Util 7

Same filename and directory in other branches
  1. 6.3 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/structure/block'),
  )));
  return;
}

/**
 * Implements hook_uninstall();
 */
function related_blog_uninstall() {
  variable_del('related_blog_count');
}

Functions