You are here

function hs_book_hierarchical_select_implementation_info in Hierarchical Select 5.3

Implementation of hook_hierarchical_select_implementation_info().

File

modules/hs_book.module, line 190
Implementation of the Hierarchical Select API for the Book module.

Code

function hs_book_hierarchical_select_implementation_info() {
  $info = node_get_types('type', 'book');
  return array(
    'hierarchy type' => t('Book'),
    'entity type' => t('Node (!book_page)', array(
      '!book_page' => $info->name,
    )),
  );
}