You are here

function spoiler_install in Spoiler 5

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

Implementation of hook_install().

File

./spoiler.install, line 6

Code

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