You are here

function purl_install in Persistent URL 7

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

Implements hook_install().

File

./purl.install, line 12
Install, update and uninstall functions for the purl module.

Code

function purl_install() {
  db_update('system')
    ->fields(array(
    'weight' => -20,
  ))
    ->condition('name', 'purl')
    ->execute();
}