function webform_hints_install in Webform Hints 7
Same name and namespace in other branches
- 6 webform_hints.install \webform_hints_install()
Implements hook_install().
File
- ./
webform_hints.install, line 11 - Installation file for the Webform Hints module.
Code
function webform_hints_install() {
$t = get_t();
drupal_set_message($t('Webform Hints has been installed. The Module settings are available under <a href="@link">Administer > Site configuration > Webform hints</a>.', array(
'@link' => url('admin/config/content/webform-hints'),
)));
}