You are here

function token_custom_install in Custom Tokens 7

Same name and namespace in other branches
  1. 5 token_custom.install \token_custom_install()
  2. 6 token_custom.install \token_custom_install()
  3. 7.2 token_custom.install \token_custom_install()

Implementation of hook_install().

File

./token_custom.install, line 13
Install, update and uninstall functions for the token_custom module.

Code

function token_custom_install() {
  drupal_set_message(st('The Token Custom module was installed. You can manage your custom tokens in the <a href=\'@admin_url\'>admin pages</a>.', array(
    '@admin_url' => url('admin/structure/token-custom'),
  )));
}