function pasteformat_permission in Paste Format (filter, clean-up pasted text) 7
Implements hook_permission().
File
- ./
pasteformat.module, line 10 - Main file for Paste Format module.
Code
function pasteformat_permission() {
return array(
'use pasteformat' => array(
'title' => t('Use Paste Format'),
'description' => t('Protects Paste Format AJAX callback that filters the pasted content.'),
),
);
}