function media_ckeditor_permission in Media CKEditor 7.2
A permission to allow users to view overridden files in the WYSIWYG.
File
- ./
media_ckeditor.module, line 174 - Primarily Drupal hooks.
Code
function media_ckeditor_permission() {
return array(
'view overridden file entities in wysiwyg' => array(
'title' => t('View overridden file entities in wysiwyg'),
'description' => t('When users are embedding files in WYSIWYGs, the file entities will be displayed with whatever overrides the user may have specified in the Media popup.'),
),
);
}