You are here

function patron_install in Library 6

Same name and namespace in other branches
  1. 5.2 patron/patron.install \patron_install()

Implementation of hook_install()

File

patron/patron.install, line 69
@author Jess Straatmann patron.install Install and uninstall all required databases. Also do incremental database updates.

Code

function patron_install() {
  drupal_install_schema('patron');

  // Notify of changes
  drupal_set_message(t("Library patron module successfully installed."));
}