function zenophile_permission in Zenophile 7
Implements hook_permission().
File
- ./
zenophile.module, line 49 - Creates Zen subthemes quickly and easily.
Code
function zenophile_permission() {
return array(
'create zen theme with zenophile' => array(
'title' => t('Create Zen themes with Zenophile'),
'description' => t('Use the Zenophile module to create new Zen subthemes.'),
),
);
}