function hook_admin_paths_alter
7.x system.api.php | hook_admin_paths_alter(&$paths) |
Redefine administrative paths defined by other modules.
Parameters
$paths: An associative array of administrative paths, as defined by implementations of hook_admin_paths().
See also
Related topics
1 invocation of hook_admin_paths_alter()
- path_get_admin_paths in drupal-7.x/
includes/ path.inc - Gets a list of administrative and non-administrative paths.
File
- drupal-7.x/
modules/ system/ system.api.php, line 525 - Hooks provided by Drupal core and the System module.
Code
function hook_admin_paths_alter(&$paths) {
// Treat all user pages as administrative.
$paths['user'] = TRUE;
$paths['user/*'] = TRUE;
// Treat the forum topic node form as a non-administrative page.
$paths['node/add/forum'] = FALSE;
}