function ckeditor_htmlbuttons_permission in CKEditor HTML Buttons (for WYSIWYG and CKEditor) 7
Implements hook_permission().
File
- ./
ckeditor_htmlbuttons.module, line 78 - Basic module file for CKEditor HTML Buttons.
Code
function ckeditor_htmlbuttons_permission() {
$perms = array();
$perms['administer ckeditor html buttons'] = array(
'title' => t('Administer CKEditor HTML Buttons'),
'description' => t('Create, edit and delete CKEditor HTML Buttons.'),
);
return $perms;
}