Просмотр файла pages/skin.php

Размер файла: 2.48Kb
<?php
#-----------------------------------------------------#
#          ********* ROTORCMS *********               #
#              Made by  :  VANTUZ                     #
#               E-mail  :  [email protected]         #
#                 Site  :  http://pizdec.ru           #
#             WAP-Site  :  http://visavi.net          #
#                  ICQ  :  36-44-66                   #
#  Вы не имеете право вносить изменения в код скрипта #
#        для его дальнейшего распространения          #
#-----------------------------------------------------#	
require_once ('../includes/start.php');
require_once ('../includes/functions.php');
require_once ('../includes/header.php');
include_once ('../themes/' . $config['themes'] . '/index.php');

if (isset($_GET['act'])) {
    $act = check($_GET['act']);
} else {
    $act = 'index';
} 

switch ($act) {
# ###########################################################################################
# #                                    Главная страница                                    ##
# ###########################################################################################
case "index":

    if (isset($_GET['skins'])) {
        $skins = check($_GET['skins']);
    } elseif (isset($_POST['skins'])) {
        $skins = check($_POST['skins']);
    } else {
        $skins = "";
    } 

    if (preg_match('|^[a-z0-9_\-]+$|i', $skins)) {
        if (file_exists(BASEDIR . 'themes/' . $skins . '/index.php')) {
            unset($_SESSION['my_themes']);
            $_SESSION['my_themes'] = $skins;
        } 
    } 

    $_SESSION['note'] = 'Тема успешно изменена!';
    header ('Location: ' . BASEDIR . 'index.php?' . SID);
    exit;
    break;
# ###########################################################################################
# #                                    Переход по навигации                                ##
# ###########################################################################################
case "navigation":

    if (isset($_POST['link'])) {
        $link = check($_POST['link']);
    } else {
        $link = 'index.php';
    } 

    header ('Location: ' . BASEDIR . verifi($link));
    exit;
    break;
} 

echo '<br /><img src="../images/img/homepage.gif" alt="image" /> <a href="../index.php?' . SID . '">На главную</a>';
include_once "../themes/" . $config['themes'] . "/foot.php";

?>