function token_custom_install in Custom Tokens 6
Same name and namespace in other branches
- 5 token_custom.install \token_custom_install()
- 7.2 token_custom.install \token_custom_install()
- 7 token_custom.install \token_custom_install()
Implementation of hook_install().
File
- ./
token_custom.install, line 11 - The install/uninstall code for the Token Custom module.
Code
function token_custom_install() {
drupal_install_schema('token_custom');
drupal_set_message(t('The Token Custom module was installed.'));
}