function hook_disable
Search API
This hook will be executed when a module is disabled in the system.
It is expected to go in a PHP file named [module].install. Ex: system.install
See also
hook_update($old_schema, $new_schema)
File
- includes/
hook.api.php, line 173 - Lists all available hooks within FlightPath's core code.
Code
function hook_disable() {
fp_add_message("Sorry to see you go!");
}