You are here

function localize_fields_install in Localize Fields 7

Implements hook_install().

File

./localize_fields.install, line 10
Drupal Localize Fields module

Code

function localize_fields_install() {

  //  Get the field_widget_form_alter, date_combo_process_alter and form_alter invoked before other hook implementations.
  db_update('system')
    ->fields(array(
    'weight' => -100,
  ))
    ->condition('type', 'module')
    ->condition('name', 'localize_fields')
    ->execute();
}