You are here

function nodequeue_admin_paths in Nodequeue 7.3

Same name and namespace in other branches
  1. 7.2 nodequeue.module \nodequeue_admin_paths()

Implements hook_admin_paths().

File

./nodequeue.module, line 205
Maintains queues of nodes in arbitrary order.

Code

function nodequeue_admin_paths() {
  if (variable_get('node_admin_theme')) {
    $paths = array(
      'node/*/nodequeue' => TRUE,
    );
    return $paths;
  }
}