node_title_help_text.install in Node title help text 7
Same filename and directory in other branches
Removes all variables set by module.
File
node_title_help_text.installView source
<?php
/**
* @file
* Removes all variables set by module.
*/
/**
* Implements hook_uninstall().
*/
function node_title_help_text_uninstall() {
$content_types = node_type_get_names();
foreach ($content_types as $machine_name => $readable_name) {
$name = 'node_title_help_text_' . $machine_name . '_title_help';
variable_del($name);
}
}
Functions
Name![]() |
Description |
---|---|
node_title_help_text_uninstall | Implements hook_uninstall(). |