1 book.module book_admin_paths()

Implements hook_admin_paths().

File

core/modules/book/book.module, line 223
Allows users to create and organize related content in an outline.

Code

function book_admin_paths() {
  if (config_get('system.core', 'node_admin_theme')) {
    $paths = array(
      'node/*/outline-remove' => TRUE,
    );
    return $paths;
  }
}