You are here

function stringoverrides_advanced_install in String Overrides Advanced 7

Implements hook_install().

File

./stringoverrides_advanced.install, line 133

Code

function stringoverrides_advanced_install() {

  // Set the module weight nice and low.
  db_update('system')
    ->fields(array(
    'weight' => -10000,
  ))
    ->condition('name', 'stringoverrides_advanced')
    ->execute();
}