function hansel_permission in Hansel breadcrumbs 7
Same name and namespace in other branches
- 8 hansel.module \hansel_permission()
Implements hook_permission().
File
- ./
hansel.module, line 42 - Hansel module
Code
function hansel_permission() {
return array(
'administer hansel' => array(
'title' => t('Administer hansel'),
),
'use PHP for hansel configuration' => array(
'title' => t('Use PHP for hansel configuration'),
),
'test hansel' => array(
'title' => t('Test hansel'),
),
);
}