url_alter_test.install 267 B

123456789101112
  1. <?php
  2. /**
  3. * Impelement hook_install().
  4. */
  5. function url_alter_test_install() {
  6. // Set the weight of this module to one higher than forum.module.
  7. db_update('system')
  8. ->fields(array('weight' => 2))
  9. ->condition('name', 'url_alter_test')
  10. ->execute();
  11. }