function taxonomy_admin_paths

Implements hook_admin_paths().

File

drupal/core/modules/taxonomy/taxonomy.module, line 357
Enables the organization of content into categories.

Code

function taxonomy_admin_paths() {
  $paths = array(
    'taxonomy/term/*/edit' => TRUE,
    'taxonomy/term/*/delete' => TRUE,
    'taxonomy/term/*/translations' => TRUE,
    'taxonomy/term/*/translations/*' => TRUE,
  );
  return $paths;
}