mirror of
https://github.com/e107inc/e107.git
synced 2025-01-17 20:58:30 +01:00
110 lines
2.3 KiB
PHP
110 lines
2.3 KiB
PHP
<?php
|
|
/*
|
|
* e107 website system
|
|
*
|
|
* Copyright (C) 2008-2009 e107 Inc (e107.org)
|
|
* Released under the terms and conditions of the
|
|
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
|
|
*
|
|
*
|
|
*
|
|
* $Source: /cvs_backup/e107_0.8/e107_admin/theme.php,v $
|
|
* $Revision$
|
|
* $Date$
|
|
* $Author$
|
|
*/
|
|
|
|
require_once("../class2.php");
|
|
if (!getperms("1")) {
|
|
header("location:".e_BASE."index.php");
|
|
exit;
|
|
}
|
|
|
|
include_lan(e_LANGUAGEDIR.e_LANGUAGE.'/admin/lan_'.e_PAGE);
|
|
|
|
$e_sub_cat = 'theme_manage';
|
|
|
|
e107::css("inline","
|
|
|
|
.admin-theme-thumb { }
|
|
.admin-theme-thumb:hover { opacity:0.4 }
|
|
|
|
.admin-theme-options { transition: opacity .20s ease-in-out;
|
|
-moz-transition: opacity .20s ease-in-out;
|
|
-webkit-transition: opacity .20s ease-in-out;
|
|
opacity:0;
|
|
width:100%;
|
|
height:80px;
|
|
padding-top:50px;
|
|
white-space:nowrap;
|
|
background-color:black;
|
|
display:block;position:relative; text-align:center; vertical-align:middle; top:-141px;}
|
|
|
|
.admin-theme-options:hover { opacity:0.8; }
|
|
|
|
.admin-theme-title { font-size: 15px; overflow:hidden; white-space:no-wrap; width:200px; position:relative; top:-130px; }
|
|
|
|
.admin-theme-select {border:1px dotted silver;background-color:#DDDDDD;float:left }
|
|
|
|
.admin-theme-select-active { background-color:red;float:left }
|
|
|
|
.admin-theme-cell { width:202px; height:160px; -moz-border-radius: 5px; border-radius: 5px; }
|
|
");
|
|
|
|
require_once("auth.php");
|
|
|
|
require_once(e_HANDLER."theme_handler.php");
|
|
$themec = new themeHandler;
|
|
|
|
$mode = (e_QUERY) ? e_QUERY :"main" ;
|
|
|
|
if($_POST['selectadmin'])
|
|
{
|
|
$mode = "admin";
|
|
}
|
|
|
|
if($_POST['upload'])
|
|
{
|
|
$mode = "choose";
|
|
}
|
|
|
|
if($_POST['selectmain'] || varset($_POST['setUploadTheme']))
|
|
{
|
|
$mode = "main";
|
|
}
|
|
|
|
$themec -> showThemes($mode);
|
|
|
|
|
|
require_once("footer.php");
|
|
|
|
function theme_adminmenu()
|
|
{
|
|
global $mode;
|
|
$mode = e_QUERY;
|
|
|
|
$e107 = &e107::getInstance();
|
|
|
|
$var['main']['text'] = TPVLAN_33;
|
|
$var['main']['link'] = e_SELF;
|
|
|
|
$var['admin']['text'] = TPVLAN_34;
|
|
$var['admin']['link'] = e_SELF."?admin";
|
|
|
|
$var['choose']['text'] = TPVLAN_51;
|
|
$var['choose']['link'] = e_SELF."?choose";
|
|
|
|
$var['upload']['text'] = TPVLAN_38;
|
|
$var['upload']['link'] = e_SELF."?upload";
|
|
|
|
$selected = (e_QUERY) ? e_QUERY : "main";
|
|
|
|
|
|
e_admin_menu(TPVLAN_26, $selected, $var);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
?>
|