function taxonomy_admin_paths in Drupal 7
Implements hook_admin_paths().
File
- modules/
taxonomy/ taxonomy.module, line 365 - Enables the organization of content into categories.
Code
function taxonomy_admin_paths() {
$paths = array(
'taxonomy/term/*/edit' => TRUE,
);
return $paths;
}