You are here

function imce_file_path_disable in IMCE Tools 6

Same name and namespace in other branches
  1. 7 imce_file_path/imce_file_path.install \imce_file_path_disable()

hook_disable - remove our custom content registration with imce

File

imce_file_path/imce_file_path.install, line 15

Code

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