You are here

function imce_admin_paths in IMCE 7

Implements hook_admin_paths().

File

./imce.module, line 69
Implements the necessary hooks for the file browser to work properly.

Code

function imce_admin_paths() {
  if (variable_get('imce_settings_admin_theme', FALSE)) {
    return array(
      'imce' => TRUE,
      'imce/*' => TRUE,
      'file/imce/*' => TRUE,
      'imce-filefield/*' => TRUE,
    );
  }
}