Файл: core/core.php
Строк: 18
<?php
# создаем константы корневой дериктории и сайта
define('ROOT', $_SERVER['DOCUMENT_ROOT']);
define('HOST', 'http://'.$_SERVER['HTTP_HOST']);
# подключаем файлы ядра
require_once(ROOT.'/core/config.php');
require_once(ROOT.'/core/database.php');
require_once(ROOT.'/core/check_user.php');
# стартуем сессии
ob_start();
session_start();
# подключим шапку и пол
function getHeader() {
$file = ROOT.'/stylesheet/header.html';
if(file_exists($file)) require_once $file;
else echo 'template header.html not found';
}
function getFooter() {
$file = ROOT.'/stylesheet/footer.html';
if(file_exists($file)) require_once $file;
else echo 'template footer.html not found';
}