You are here

function epub_help in Epub 6

Implementation of hook_help().

File

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

Code

function epub_help($path, $arg) {
  switch ($path) {
    case 'admin/help#epub':
      return '<p>' . t('The ePub module allows administrators to associate ePub content with book outlines.') . '</p><p>' . t('By enabling this module, you will allow the user to download the ePub conversion of your book contents.<br/>') . t('EPub settings can be found at <a href="@epub_config_page">ePub Settings</a> page, while the administration panel is found at <a href="@epub_admin_page">ePub List</a> page.<br/>', array(
        '@epub_config_page' => url('admin/content/epub/settings'),
        '@epub_admin_page' => url('admin/content/epub'),
      )) . t('In order to create or download an ePub, visit a book page where you can find the proper ePub tab in the menu.') . '</p>';
    case 'admin/content/epub':
      return '<p>' . t('The ePub module is suited for exporting book contents to ePub file format.') . '</p>';
  }
}