You are here

oa_sections.install in Open Atrium Core 7.2

Install and update functionality..

File

modules/oa_sections/oa_sections.install
View source
<?php

/**
 * @file
 * Install and update functionality..
 */

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

  // disable comments on Sections by default
  variable_set('comment_oa_section', 0);
}

/**
 * Enable reference_option_limit.
 */
function oa_sections_update_7001() {
  module_enable(array(
    'reference_option_limit',
  ));
}

Functions

Namesort descending Description
oa_sections_install Implements hook_install().
oa_sections_update_7001 Enable reference_option_limit.