You are here

oa_home.install in Open Atrium Home 7.2

Provides functions that run on (un)install and update for oa_home.

File

oa_home.install
View source
<?php

/**
 * @file
 * Provides functions that run on (un)install and update for oa_home.
 */

/**
 * Implements hook_install().
 */
function oa_home_install() {

  // set initial home page
  variable_set('site_frontpage', 'home');
}

/**
 * Enable oa_brand.
 */
function oa_home_update_7200() {
  $enable = array(
    'oa_brand',
  );
  module_enable($enable);
}

Functions

Namesort descending Description
oa_home_install Implements hook_install().
oa_home_update_7200 Enable oa_brand.