You are here

function epub_theme in Epub 6

Same name and namespace in other branches
  1. 8 epub.module \epub_theme()
  2. 7 epub.module \epub_theme()

Implementation of hook_theme().

File

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

Code

function epub_theme() {
  return array(
    'epub_info' => array(
      'template' => 'epub_info',
      'arguments' => array(
        'book_outline' => NULL,
        'author_name' => NULL,
        'language_code' => NULL,
        'identifier' => NULL,
        'identifier_type' => NULL,
        'creation_date' => NULL,
        'publisher_name' => NULL,
        'publisher_site' => NULL,
        'rights' => NULL,
        'source_url' => NULL,
      ),
    ),
  );
}