You are here

function _openatrium_set_up_theme in Open Atrium 7.2

Set the default theme.

1 call to _openatrium_set_up_theme()
openatrium_install in ./openatrium.install
Implements hook_install().

File

./openatrium.install, line 184
Perform actions to set up the site for this profile.

Code

function _openatrium_set_up_theme() {
  $theme = 'oa_theme';
  theme_enable(array(
    $theme,
  ));
  variable_set('theme_default', $theme);
  theme_disable(array(
    'responsive_bartik',
    'bartik',
    'oa_radix',
  ));
}