You are here

function admin_path_permission in Administrative pages 7

Implements hook_permission().

File

./admin_path.module, line 35
Allows users to configure which pages are to be considered administrative.

Code

function admin_path_permission() {
  return array(
    'administer admin paths' => array(
      'title' => t('Administer admin paths'),
    ),
  );
}