actions_loop_test.install

  1. drupal
    1. 7 modules/simpletest/tests/actions_loop_test.install
    2. 8 core/modules/system/tests/modules/actions_loop_test/actions_loop_test.install

File

modules/simpletest/tests/actions_loop_test.install
View source
  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. }
Login or register to post comments