You are here

varbase_core.install in Varbase: The Ultimate Drupal CMS Starter Kit (Bootstrap Ready) 7.3

File

modules/features/varbase_core/varbase_core.install
View source
<?php

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

Functions

Namesort descending Description
varbase_core_install Implements hook_install().