function user_admin_paths

Implements hook_admin_paths().

File

drupal/modules/user/user.module, line 1945
Enables the user registration and login system.

Code

function user_admin_paths() {
  $paths = array(
    'user/*/cancel' => TRUE,
    'user/*/edit' => TRUE,
    'user/*/edit/*' => TRUE,
  );
  return $paths;
}