You are here

function purl_install in Persistent URL 6

Same name and namespace in other branches
  1. 7 purl.install \purl_install()

Implementation of hook_install().

File

./purl.install, line 6

Code

function purl_install() {
  drupal_install_schema('purl');
  db_query("UPDATE {system} SET weight = -20 WHERE name = 'purl'");

  // Migrate context_prefix table if present.
  _purl_migrate();
}