function hook_disable

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_install()

hook_enable()

hook_update($old_schema, $new_schema)

hook_uninstall()

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!");
}