1 book.module book_admin_bar_cache_info()

Implements hook_admin_bar_cache_info().

File

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

Code

function book_admin_bar_cache_info() {
  $caches['book_cache'] = array(
    'title' => t('Book navigation data'),
    'callback' => '_book_cache_clear',
  );
  return $caches;
}