1KA_F2F/frontend/drupal/modules/simpletest/tests/actions_loop_test.install

12 lines
206 B
Plaintext
Raw Normal View History

2020-08-14 13:36:36 +02:00
<?php
/**
* Implements hook_install().
*/
function actions_loop_test_install() {
db_update('system')
->fields(array('weight' => 1))
->condition('name', 'actions_loop_test')
->execute();
}