You are here

actions_loop_test.install in SimpleTest 7

File

tests/actions_loop_test.install
View source
<?php

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

Functions

Namesort descending Description
actions_loop_test_install Implementation of hook_install().