You are here

function hansel_permission in Hansel breadcrumbs 8

Same name and namespace in other branches
  1. 7 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'),
    ),
  );
}