You are here

function book_access_ui_admin_paths in Book access 7.2

Implements hook_admin_paths().

File

./book_access_ui.module, line 12
User interface for the Book access module.

Code

function book_access_ui_admin_paths() {
  $paths = array();
  if (variable_get('node_admin_theme', TRUE)) {
    $paths['node/*/book_access'] = TRUE;
    $paths['book_access/*'] = TRUE;
  }
  return $paths;
}