function ckeditor_styles_permission in CKEditor Styles (for WYSIWYG) 7
Implements hook_permission().
File
- ./
ckeditor_styles.module, line 133 - Basic module file for CKEditor styles to implement basic hooks and make available some basic functions.
Code
function ckeditor_styles_permission() {
return array(
'administer ckeditor styles' => array(
'title' => t('Administer ckeditor styles'),
'description' => t('Create, edit and delete ckeditor style configurations.'),
),
);
}