You are here

function any_menu_path_permission in Any Menu Path 7

Implements hook_permission().

File

./any_menu_path.module, line 10
Allows to add menu paths that don't exist on the site.

Code

function any_menu_path_permission() {
  return array(
    'administer any_menu_path' => array(
      'title' => t('Administer Any Menu Paths'),
      'description' => t('Bypass form validate via the Any Menu Paths module.'),
    ),
  );
}