function user_admin_paths
Implements hook_admin_paths().
Archivo
- drupal-7.x/
modules/ user/ user.module, line 1912 - Enables the user registration and login system.
Código
function user_admin_paths() {
$paths = array(
'user/*/cancel' => TRUE,
'user/*/edit' => TRUE,
'user/*/edit/*' => TRUE,
);
return $paths;
}