You are here

function nodeorder_admin_paths in Node Order 7

Implements hook_admin_paths().

File

./nodeorder.module, line 929
Nodeorder module.

Code

function nodeorder_admin_paths() {
  $paths = array(
    'taxonomy/term/*/order' => TRUE,
  );
  return $paths;
}