You are here

function imce_file_path_enable in IMCE Tools 6

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

hook_enable - let imce know we have custom content

File

imce_file_path/imce_file_path.install, line 6

Code

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