function contemplate_permission in Content Templates (Contemplate) 7
Implements hook_perm().
File
- ./
contemplate.module, line 168 - Create templates to customize teaser and body content.
Code
function contemplate_permission() {
return array(
'administer templates' => array(
'title' => t('Administer Content Templates'),
'description' => t('Create, delete, make changes to content templates'),
),
);
}