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