You are here

function domain_lang_install in Domain Lang 7

Implements hook_install().

File

./domain_lang.install, line 11
Install file.

Code

function domain_lang_install() {
  db_update('system')
    ->expression('weight', 'weight + :weight', array(
    ':weight' => 100,
  ))
    ->condition('name', 'domain_lang')
    ->condition('type', 'module')
    ->execute();
}