You are here

function imce_search_disable in IMCE Tools 7

Same name and namespace in other branches
  1. 6 imce_search/imce_search.install \imce_search_disable()

hook_disable - remove our custom content registration with imce

File

imce_search/imce_search.install, line 15

Code

function imce_search_disable() {
  $funcs = variable_get('imce_custom_content', array());
  unset($funcs['imce_search_content']);
  variable_set('imce_custom_content', $funcs);
}