actions_loop_test.install 206 B

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