aboutsummaryrefslogtreecommitdiffstats
path: root/themes/elegant/admin/maintain.inc.php
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--themes/elegant/admin/maintain.inc.php30
1 files changed, 30 insertions, 0 deletions
diff --git a/themes/elegant/admin/maintain.inc.php b/themes/elegant/admin/maintain.inc.php
new file mode 100644
index 000000000..6a531ea09
--- /dev/null
+++ b/themes/elegant/admin/maintain.inc.php
@@ -0,0 +1,30 @@
+<?php
+
+function theme_activate($id, $version, &$errors)
+{
+ global $prefixeTable, $conf;
+
+ if (!isset($conf['elegant']))
+ {
+ $config = array(
+ 'p_main_menu' => 'on',//on - off - disabled
+ 'p_pict_descr' => 'on',//on - off - disabled
+ 'p_pict_comment' => 'off',//on - off - disabled
+ );
+
+ $query = "
+INSERT INTO " . CONFIG_TABLE . " (param,value,comment)
+VALUES ('elegant' , '".pwg_db_real_escape_string(serialize($config))."' , 'p_main_menu#p_pict_descr#p_pict_comment');";
+ pwg_query($query);
+ }
+}
+
+function theme_delete()
+{
+ global $prefixeTable;
+
+ $query = 'DELETE FROM ' . CONFIG_TABLE . ' WHERE param="elegant" ;';
+ pwg_query($query);
+}
+
+?> \ No newline at end of file