Projet

Général

Profil

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

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

1
<?php
2

    
3
/**
4
 * Implements hook_install().
5
 */
6
function actions_loop_test_install() {
7
   db_update('system')
8
    ->fields(array('weight' => 1))
9
    ->condition('name', 'actions_loop_test')
10
    ->execute();
11
}