function ctools_custom_content_permission in Chaos Tool Suite (ctools) 7
Implementation of hook_permission()
File
- ctools_custom_content/
ctools_custom_content.module, line 18 - The ctools_custom_content module.
Code
function ctools_custom_content_permission() {
return array(
'administer custom content' => array(
'title' => t('Administer custom content'),
'description' => t('Add, edit and delete CTools custom stored custom content'),
),
);
}