You are here

function spoiler_install in Spoiler 7

Same name and namespace in other branches
  1. 5 spoiler.install \spoiler_install()
  2. 6 spoiler.install \spoiler_install()

Implements hook_install().

File

./spoiler.install, line 11
Installation and uninstallation scripts for the spoiler module.

Code

function spoiler_install() {
  $t = get_t();
  drupal_set_message($t('Spoiler module: Installation script complete. The spoiler filter can be configured via the <a href="!url">text formats</a> page.', array(
    '!url' => url('admin/config/formats'),
  )));
  return array();
}