aboutsummaryrefslogtreecommitdiffstats
path: root/themes/elegant/admin/maintain.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'themes/elegant/admin/maintain.inc.php')
-rw-r--r--themes/elegant/admin/maintain.inc.php30
1 files changed, 0 insertions, 30 deletions
diff --git a/themes/elegant/admin/maintain.inc.php b/themes/elegant/admin/maintain.inc.php
deleted file mode 100644
index 6a531ea09..000000000
--- a/themes/elegant/admin/maintain.inc.php
+++ /dev/null
@@ -1,30 +0,0 @@
-<?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