You are here

function token_custom_install in Custom Tokens 7.2

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 token_custom.install \token_custom_install()

Implements of hook_install().

File

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

Code

function token_custom_install() {
  $t = get_t();
  drupal_set_message($t('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'),
  )));
}