Select Git revision
actions_loop_test.install
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
actions_loop_test.install 206 B
<?php
/**
* Implements hook_install().
*/
function actions_loop_test_install() {
db_update('system')
->fields(array('weight' => 1))
->condition('name', 'actions_loop_test')
->execute();
}