You are here

function epub_node_info in Epub 6

Implementation of hook_node_info().

File

./epub.module, line 102
Provide ePub content type and enable the creation of ePub files from book contents.

Code

function epub_node_info() {
  return array(
    'epub' => array(
      'name' => t('ePub'),
      'description' => 'An ePub is a special format used in ebook readers to render books',
      'module' => 'epub',
      'has_title' => TRUE,
      'has_body' => TRUE,
      'body_label' => t('Description'),
    ),
  );
}