Files
2019-03-28 10:59:04 +01:00

12 lines
206 B
Plaintext

<?php
/**
* Implements hook_install().
*/
function actions_loop_test_install() {
db_update('system')
->fields(array('weight' => 1))
->condition('name', 'actions_loop_test')
->execute();
}