Projet

Général

Profil

Paste
Télécharger (267 octets) Statistiques
| Branche: | Révision:

root / drupal7 / modules / simpletest / tests / url_alter_test.install @ db2d93dd

1
<?php
2

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