You are here

function imce in IMCE 7

Same name and namespace in other branches
  1. 6.2 inc/imce.page.inc \imce()

The q = imce.

14 string references to 'imce'
imce-page.tpl.php in tpl/imce-page.tpl.php
imce.admin.inc in inc/imce.admin.inc
Serves administration pages of IMCE.
imce_content in inc/imce.page.inc
Returns the content of the file browser.
imce_fileop_form_validate in inc/imce.page.inc
Validate file operations form.
imce_file_register in inc/imce.page.inc
Registers the file as an IMCE file.

... See full list

File

inc/imce.page.inc, line 11
Implements the file browser.

Code

function imce($scheme = NULL) {

  // Suppress admin_menu.
  module_invoke('admin_menu', 'suppress');
  $jsop = isset($_GET['jsop']) ? filter_xss($_GET['jsop']) : NULL;
  drupal_add_http_header('Content-Type', 'text/html; charset=utf-8');
  print imce_page($GLOBALS['user'], $scheme, $jsop);
  exit;
}