You are here

function taxonomy_tools_admin_paths in Taxonomy Tools 8

Same name and namespace in other branches
  1. 7 taxonomy_tools.module \taxonomy_tools_admin_paths()

Implements hook_admin_paths().

File

./taxonomy_tools.module, line 471
Drupal hooks and functions to work with taxonomy terms.

Code

function taxonomy_tools_admin_paths() {
  $paths = array(
    'taxonomy-tools/*/order/*' => TRUE,
  );
  return $paths;
}