imce_search.install 498 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * hook_enable - let imce know we have custom content
  4. */
  5. function imce_search_enable() {
  6. $funcs = variable_get('imce_custom_content', array());
  7. $funcs['imce_search_content'] = 1;
  8. variable_set('imce_custom_content', $funcs);
  9. }
  10. /**
  11. * hook_disable - remove our custom content registration with imce
  12. */
  13. function imce_search_disable() {
  14. $funcs = variable_get('imce_custom_content', array());
  15. unset($funcs['imce_search_content']);
  16. variable_set('imce_custom_content', $funcs);
  17. }