You are here

function webform_scheduler_install in Webform Scheduler 7

Implements hook_install().

File

./webform_scheduler.install, line 65
Webform Scheduler module install/schema hooks.

Code

function webform_scheduler_install() {
  db_update('system')
    ->condition('name', 'webform_scheduler')
    ->condition('type', 'module')
    ->fields(array(
    'weight' => -2,
  ))
    ->execute();
}