You are here

function epub_install in Epub 6

Same name and namespace in other branches
  1. 7 epub.install \epub_install()

Implementation of hook_install().

File

./epub.install, line 11
ePub module' s installation file.

Code

function epub_install() {

  // Create tables.
  drupal_install_schema('epub');
  drupal_set_message(t('ePub settings are available here: <a href="@settings">Administer > Content management > ePubs</a>.', array(
    '@settings' => url('admin/content/epub/settings'),
  )));
  drupal_set_message(t('Also do not forget to check permissions for ePub contents: <a href="@permissions">Administer > User management > Permissions</a>.', array(
    '@permissions' => url('admin/user/permissions'),
  )));
}