imce_file_path.install in IMCE Tools 6
Same filename and directory in other branches
File
imce_file_path/imce_file_path.installView source
<?php
/**
* hook_enable - let imce know we have custom content
*/
function imce_file_path_enable() {
$funcs = variable_get('imce_custom_content', array());
$funcs['imce_file_path_content'] = 1;
variable_set('imce_custom_content', $funcs);
}
/**
* hook_disable - remove our custom content registration with imce
*/
function imce_file_path_disable() {
$funcs = variable_get('imce_custom_content', array());
unset($funcs['imce_file_path_content']);
variable_set('imce_custom_content', $funcs);
}
Functions
Name![]() |
Description |
---|---|
imce_file_path_disable | hook_disable - remove our custom content registration with imce |
imce_file_path_enable | hook_enable - let imce know we have custom content |