comparison modules/simpletest/tests/actions_loop_test.install @ 0:ff03f76ab3fe

initial version
author danieleb <danielebarchiesi@me.com>
date Wed, 21 Aug 2013 18:51:11 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:ff03f76ab3fe
1 <?php
2
3 /**
4 * Implements hook_install().
5 */
6 function actions_loop_test_install() {
7 db_update('system')
8 ->fields(array('weight' => 1))
9 ->condition('name', 'actions_loop_test')
10 ->execute();
11 }