function book_entity_bundle_info

Implements hook_entity_bundle_info().

File

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

Code

function book_entity_bundle_info() {
  $bundles['menu_link']['book-toc'] = array(
    'label' => t('Book'),
    'translatable' => FALSE,
  );
  return $bundles;
}