You are here

function varbase_core_install in Varbase: The Ultimate Drupal CMS Starter Kit (Bootstrap Ready) 7.3

Implements hook_install().

File

modules/features/varbase_core/varbase_core.install, line 7

Code

function varbase_core_install() {
  db_update('system')
    ->fields(array(
    'weight' => 100,
  ))
    ->condition('name', 'varbase_core', '=')
    ->condition('type', 'module', '=')
    ->execute();
}