You are here

function book_copy_admin_paths in Book Copy 7.2

Implements hook_admin_paths().

File

./book_copy.module, line 72
Book copy, copy book outlines

Code

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