function webform_share_install in Webform share 7
Implements hook_install().
File
- ./webform_share.install, line 11 
- Standard installation, update, uninstall scripts.
Code
function webform_share_install() {
  db_update('system')
    ->condition('name', 'webform_share')
    ->condition('type', 'module')
    ->fields(array(
    'weight' => -2,
  ))
    ->execute();
}