function ckeditor_link_permission in CKEditor Link 7
Same name and namespace in other branches
- 7.2 ckeditor_link.module \ckeditor_link_permission()
Implementation of hook_permission().
File
- ./
ckeditor_link.module, line 22 - 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>'),
),
);
}