Файл: www/admin/index.php
Строк: 64
<?
/*-----------------------------------------------------------
Product: BBlog 2.0
License: GNU General Public License (http://www.gnu.org/licenses/gpl.html)
Copyright: (c) 2007 Batia.info
Version: 2.0 RC1
-------------------------------------------------------------*/
define('INDEX', true);
// Подключаем необходимые файлы настроек.
include ('../config.php');
include ('../include/function.php');
include ('function/function.php');
include ('function/function_index.php');
include ('function/function_comment.php');
$auth = auth_user(); // Проверяем авторизирован ли юзер как админ
/*
Список переменных используемых в КАЖДОЙ странице.
$content // Содержимое страницы.
$title_page // Заголовок страницы.
$page_description // Описание странички.
$page_keywords // Ключевые слова странички.
*/
$page_title ='Панель администрирования';
$page_description ='Здесь администратор может управлять своим блогом.';
$page_keywords ='админпанель';
if($auth != 'is_admin') {
$content = $auth;
}else{
$content ='
<h1>Добро пожаловать в панель управления блогом.</h1>
<table border="0" width="100%" cellpadding="0" cellspacing="1">
<tr>
<td class="news_list_head">Параметр</td>
<td class="news_list_head">Значение</td>
</tr>
<tr>
<td class="news_list_1">Кол-во записей в блоге</td>
<td class="news_list_1" align="center">'.count_news().'</td>
</tr>
<tr>
<td class="news_list_2">Кол-во статичных страниц</td>
<td class="news_list_2" align="center">'.count_pages().'</td>
</tr>
<tr>
<td class="news_list_1">Кол-во комментариев</td>
<td class="news_list_1" align="center">'.count_comment('', $all=true).'</td>
</tr>
</table>
';
}
// Формируем страничку.
include('../template/design.php');
?>