You are here

function cami_permission in Custom Active Menu Item 7

Implements hook_permission().

File

./cami.module, line 25
Allows to specify which menu item is active and the classes that will be added to it.

Code

function cami_permission() {
  return array(
    'administer cami' => array(
      'title' => t('Administer Custom Active Menu Item'),
      'description' => t('Allows to users edit the menu item to indicate when is active.'),
    ),
  );
}