You are here

function oa_core_install in Open Atrium Core 7.2

Implements hook_install().

File

./oa_core.install, line 11
Provides update and install hooks to oa_core.

Code

function oa_core_install() {
  oa_core_create_default_terms();

  // disable comments on Groups by default
  variable_set('comment_oa_group', 0);

  // disable comments on Spaces by default
  variable_set('comment_oa_space', 0);
}