/[drupal]/contributions/modules/relevant_content/relevant_content.install
ViewVC logotype

Contents of /contributions/modules/relevant_content/relevant_content.install

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.2 - (show annotations) (download) (as text)
Thu Sep 25 09:49:29 2008 UTC (14 months ago) by njt1982
Branch: MAIN
CVS Tags: DRUPAL-6--1-4, DRUPAL-6--1-0, DRUPAL-6--1-1, DRUPAL-6--1-2, DRUPAL-6--1-3, HEAD
Branch point for: DRUPAL-7--1, DRUPAL-6--1
Changes since 1.1: +21 -5 lines
File MIME type: text/x-php
Putting a Drupal 6 compatible version into HEAD
1 <?php
2 // $Id$
3
4 /**
5 * @file
6 * This is the relevant content install file.
7 */
8
9 /**
10 * Implementation of hook_install().
11 */
12 function relevant_content_install() {
13 $t = get_t();
14 drupal_set_message($t("Relevant Content settings are available under !link",
15 array( '!link' => l($t('Administer > Site configuration > Relevant Content'), 'admin/settings/relevant_content' ) )
16 ));
17 }
18
19
20 /**
21 * Implementation of hook_uninstall().
22 */
23 function relevant_content_uninstall() {
24 variable_del('relevant_content');
25 }

  ViewVC Help
Powered by ViewVC 1.1.2