function webform_template_update_7002 in Webform Template 7
Same name and namespace in other branches
- 7.4 webform_template.install \webform_template_update_7002()
 
Make webform template execute before webform.
File
- ./
webform_template.install, line 22  
Code
function webform_template_update_7002(&$sand) {
  $weight = db_select('system')
    ->condition('name', 'webform')
    ->fields('system', array(
    'weight',
  ))
    ->execute()
    ->fetchField();
  db_update('system')
    ->fields(array(
    'weight' => $weight - 1,
  ))
    ->condition('name', 'webform_template')
    ->execute();
}