ну например у MVC какое предназначение??? Я тут немного код переделал посмотрите - может лучше стало
<?php
error_reporting(-1);
session_start();
ob_implicit_flush(0);
define("BASE_DIR", "http://" . $_SERVER['HTTP_HOST'] . "/");
define("TMP_DIR", BASE_DIR . "template/");
define("SYS_DIR", BASE_DIR . "system/");
define("SYS_KEY", true);
$mod = trim(htmlspecialchars($_GET['mod']));
require './system/data/db.php';
require './system/data/config.php';
require './system/library/scripts.php';
function __autoload ($class)
{
if($class = "index")
{
$class_dir = "system/system.php";
}
else
{
$class_dir = 'system/classes/' . $class . '.class.php';
}
if(!file_exists($class_dir))
{
exit ("На сайте отсутсвует класс: <b>" . $class . "</b>. Он необходим для работы скрипта.");
}
else
{
require './system/classes/' . $class . '.php';
}
}
$index = new index;
$snipet = new snippets;
$engine = new engine;
$template = new template;
$main_tpl = $index->load_template("main.tpl", TMP_DIR);
if(isset($_COOKIE['user_hash']))
{
$hash = mysql_real_escape_string($_COOKIE['user_hash']);
$select_user = mysql_query("SELECT `banned` FROM `users` WHERE `hash`='". $hash ."' and `public`='1'") or die("Произошла MySQL ошибка: " . mysql_error());
if(mysql_num_rows($select_user) > 0)
{
$group = $snipet->user_group($_COOKIE['user_hash']);
if($group['banned'] == 1)
{
exit($index->load_template("banned.tpl", TMP_DIR));
}
if($config['work_site'] == "off")
{
if($group['view_offsite'] == 0)
{
exit($config['work_offsite_text']);
}
}
$user = true;
}
else
{
if($config['work_site'] == "off")
{
exit($config['work_offsite_text']);
}
$user = false;
}
}
if(isset($mod))
{
switch($mod)
{
case "news":
$page = $engine->news();
break;
case "category":
$page = $engine->category();
break;
default:
$page = $engine->GetModul();
break;
}
}
else
{
$page = $engine->index();
}
if($_SESSION['engine_error'][0])
{
exit($_SESSION['engine_error'][0]);
}
echo strtr($main_tpl, array(
'{content}' => $_SESSION['content'],
'{poll}' => $template->poll(),
'{popnews}' => $template->popularnews(),
'{search}' => $template->search(),
'{login}' => $template->login(),
'{arhives}' => $template->arhiv(),
'{title}' => $_SESSION['title'],
'{engine_scripts}' => $_SESSION['engine_scripts']
)
);
И выкладываю код файла
system.php<?php
if(!defined('SYS_KEY'))
{
exit('Несанкционированный доступ к файлу');
}
class index {
public function load_template($tpl, TMP_DIR)
{
$tpl = TMP_DIR . $tpl;
if(!file_exists($tpl))
{
$_SESSION['engine_error'][] = "Невозможно прочитать файл шаблона: <b>" . $tpl . "</b>";
$result = false;
}
else
{
$result = file_get_contents($tpl);
}
return $result;
}
}