Error message

You are browsing documentation for drupal 7.x, which is not supported anymore. Read the updated version of this page for drupal 11.x (the latest version).

function node_admin_paths

Implements hook_admin_paths().

File

modules/node/node.module, line 258

Code

function node_admin_paths () {
 if (variable_get ('node_admin_theme')) {
 $paths = array(
 'node/*/edit' => TRUE,
 'node/*/delete' => TRUE,
 'node/*/revisions' => TRUE,
 'node/*/revisions/*/revert' => TRUE,
 'node/*/revisions/*/delete' => TRUE,
 'node/add' => TRUE,
 'node/add/*' => TRUE,
 );
 return $paths;
 }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.