function imce_permission in IMCE 7
Implements hook_permission().
File
- ./
imce.module, line 83 - Implements the necessary hooks for the file browser to work properly.
Code
function imce_permission() {
return array(
'administer imce' => array(
'title' => t('Administer IMCE'),
'restrict access' => TRUE,
),
);
}