1 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

hook_admin_paths()

Related topics

File

core/modules/system/system.api.php, line 98
Hooks provided by Backdrop 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 post node form as a non-administrative page.
  $paths['node/add/post'] = FALSE;
}