function hook_admin_paths_alter
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 includes/
path.inc - Gets a list of administrative and non-administrative paths.
File
-
modules/
system/ system.api.php, line 525
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;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.