You are here

function include_disable in Include 7

Same name and namespace in other branches
  1. 8 include.install \include_disable()
  2. 6 include.install \include_disable()

Implements hook_disable().

Clears module-specific variables 'include_error' and 'include_set_root'.

See also

include_set_root(), include_clear_root()

File

./include.install, line 28
Installs and uninstalls the Include module.

Code

function include_disable() {
  variable_del('include_error');
  variable_del('include_set_root');
}