function imce_admin_file_browser in IMCE 7
Admin file browser.
1 string reference to 'imce_admin_file_browser'
- imce_menu in ./
imce.module - Implements hook_menu().
File
- inc/
imce.admin.inc, line 65 - Serves administration pages of IMCE.
Code
function imce_admin_file_browser() {
$output = [
'title' => [
'#markup' => '<h2 class="title">' . t('IMCE File Browser') . '</h2>',
],
'content' => [
'#markup' => '<iframe width="100%" height="500" class="imce-modal-iframe" src="/imce"></iframe>',
],
];
return $output;
}