function ckeditor_link_permission in CKEditor Link 7.2
Same name and namespace in other branches
- 7 ckeditor_link.module \ckeditor_link_permission()
Implementation of hook_permission().
File
- ./
ckeditor_link.module, line 12 - Written by Henri MEDOT <henri.medot[AT]absyx[DOT]fr> http://www.absyx.fr
Code
function ckeditor_link_permission() {
return array(
'access ckeditor link' => array(
'title' => t('Access <em>CKEditor Link</em>'),
),
'administer ckeditor link' => array(
'title' => t('Administer <em>CKEditor Link</em>'),
),
);
}