You are here

function node_gallery_api_admin_paths in Node Gallery 7

Implements hook_admin_paths().

File

./node_gallery_api.module, line 199
Node Gallery module.

Code

function node_gallery_api_admin_paths() {
  $paths = array(
    'node/*/sort' => TRUE,
    'node/*/upload' => TRUE,
    'node/*/items' => TRUE,
    'node/*/manage' => TRUE,
  );
  return $paths;
}