function book_admin_paths
Implements hook_admin_paths().
Archivo
- drupal-7.x/
modules/ book/ book.module, line 235 - Allows users to create and organize related content in an outline.
Código
function book_admin_paths() {
if (variable_get('node_admin_theme')) {
$paths = array(
'node/*/outline' => TRUE,
'node/*/outline/remove' => TRUE,
);
return $paths;
}
}