You are here

webform_hints.install in Webform Hints 6

Same filename and directory in other branches
  1. 7 webform_hints.install

Installation file for the Webform Hints module.

File

webform_hints.install
View source
<?php

/**
 * @file
 * Installation file for the Webform Hints module.
 */

/**
 * Implementation of hook_install().
 */
function webform_hints_install() {
  drupal_set_message(st("Webform Hints has been installed. The Module settings are available under !link.", array(
    '!link' => l(st('Administer > Site configuration > Webform Hints'), 'admin/settings/webform-hints'),
  )));
}

/**
 * Implementation of hook_uninstall().
 */
function webform_hints_uninstall() {
  variable_del('webform_hints_forms');
}

Functions

Namesort descending Description
webform_hints_install Implementation of hook_install().
webform_hints_uninstall Implementation of hook_uninstall().