materio-base-legacy/modules/simpletest/tests/actions_loop_test.install
bachy 95098773d5 first import
Signed-off-by: bachy <git@g-u-i.net>
2012-10-05 13:50:00 +02: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();
}