function book_helper_admin_paths in Book helper 7
Implements hook_admin_paths().
File
- ./
book_helper.module, line 477 - Improves Drupal's core book module's functionality.
Code
function book_helper_admin_paths() {
if (variable_get('book_helper_admin_theme')) {
$paths = array(
'node/*/order' => TRUE,
);
return $paths;
}
}