Вход Регистрация
Файл: modules/user/journal.php
Строк: 36
<?php
/****
* @package LiveCMS
* @link livecms.org
* @author MyZik
* @version See attached file VERSION.txt
* @license See attached file LICENSE.txt
* @copyright Copyright (C) LiveCMS Development Team
****/

$title $lang['journal']; // Заголовок страницы
$module 'journal'// Модуль

  /**
    * Проверка наличия авторизации
  **/
  
if (!isset($user)) {
    require_once(
HOME .'/incfiles/header.php');
echo 
'<div class="error">' $lang['only_users'] . '</div>';
    echo 
'<div class="home">' .
    
'<img src="/design/themes/' $set_user['theme'] . '/images/back.png" alt="" /> <a href="/index.php">' $lang['back'] . '</a>' .
    
'</div>';
    require_once(
HOME .'/incfiles/footer.php');
  }

  
/**
    * Помечаем все уведомления как прочитанные
  **/
  
mysql_query("UPDATE `journal` SET `read` = 'yes' WHERE `user_id` = '" $user['id'] . "'");

  require_once(
HOME .'/incfiles/header.php'); // Подключаем шапку

  /**
    * Небольшая панель навигации
  **/
  
echo '<div class="title"><a href="cabinet.php">' $lang['my_cabinet'] . '</a> | <b>' $lang['journal'] . '</b></div>';

  
/**
    * Настраиваем пагинацию
  **/
  
$total mysql_result(mysql_query("SELECT COUNT(*) FROM `journal` WHERE `user_id` = '" $user['id'] . "'"), 0);
  
$req mysql_query("SELECT * FROM `journal` WHERE `user_id` = '" $user['id'] . "' ORDER BY `time` DESC LIMIT $start$countMess"); 
while (
$res mysql_fetch_assoc($req)) {
    echo (
$i 2) ? '<div class="list1">' '<div class="list2">';
    echo 
'<b>' display_time($res['time']) . '</b><br />' output(txt($res['message'])) . '</div>';
    
$i++;


  
/**
    * Пагинация 
  **/
  
if ($total $countMess) {
    echo 
'<div class="home">' display_pagination('journal.php?'$start$total$countMess) . '</div>';
  }

  require_once(
HOME .'/incfiles/footer.php'); // Подключаем ноги
?>
Онлайн: 1
Реклама