GITLAB

Oscar Velasquez / portalWebUBV

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • portalwebubv
  • modules
  • simpletest
  • tests
  • actions_loop_test.install
  • 99416e6e3   sitio completo Browse Code ยป
    Oscar Velasquez
    2015-05-06 15:09:01 -0400  
actions_loop_test.install 206 Bytes
edit raw blame history permalink
1 2 3 4 5 6 7 8 9 10 11
<?php

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