<?php
define('R', $_SERVER['DOCUMENT_ROOT']);
define('S', R.'/system');
require_once(R.'/system/kernel.php');
$tmp->header('apanel');
$tmp->div('title', Language::config('apanel'));
User::panel();
if(User::level() < 2)
{
header('location: /');
}
$c=$db->fass("SELECT COUNT(id) as count FROM `news`");
$tmp->div('menu', '<a href="./news">'.Language::config('news').' ('.$c['count'].' )</a>');
$tmp->footer();
?>