source: extensions/gally/gally-graphite/admin/maintain.inc.php @ 7337

Last change on this file since 7337 was 7337, checked in by grum, 14 years ago

fix bug:1948

File size: 386 bytes
Line 
1<?php
2
3include_once(PHPWG_THEMES_PATH.'gally-default/admin/Conf.class.inc.php');
4
5function theme_activate($id, $version, &$errors)
6{
7  $config = new Conf();
8  $config->setFileName(PHPWG_ROOT_PATH."local/themes/gally-graphite/conf/local.conf");
9  $config->read(false);
10  $config->setConf(array('menuAnimated'=>'none'), false);
11  $config->write();
12}
13
14function theme_deactivate()
15{
16
17}
18
19?>
Note: See TracBrowser for help on using the repository browser.