Вход Регистрация
Файл: public_html/incfiles/classes/mainpage.php
Строк: 90
<?php

/**
* @package     JohnCMS
* @link        http://johncms.com
* @copyright   Copyright (C) 2008-2011 JohnCMS Community
* @license     LICENSE.txt (see attached file)
* @version     VERSION.txt (see attached file)
* @author      http://johncms.com/about
*/

defined('_IN_JOHNCMS') or die('Restricted access');

class 
mainpage {
    public 
$news;         // Текст новостей
    
public $newscount;    // Общее к-во новостей
    
public $lastnewsdate; // Дата последней новости
    
private $settings = array ();
    function 
__construct() {
        global 
$set;
        
$this->settings = unserialize($set['news']);
        
$this->newscount = $this->newscount() . $this->lastnewscount();
        
$this->news = $this->news();
    }

    
// Запрос свежих новостей на Главную
    
private function news() {
        global 
$lng;
        if (
$this->settings['view'] > 0) {
            
$reqtime = $this->settings['days'] ? time() - ($this->settings['days'] * 86400) : 0;
            
$req = mysql_query("SELECT * FROM `news` WHERE `time` > '$reqtime' ORDER BY `time` DESC LIMIT " . $this->settings['quantity']);
            if (
mysql_num_rows($req) > 0) {
                
$i = 0;
                
$news = '';
                while ((
$res = mysql_fetch_array($req)) !== false) {
                    
$text = $res['text'];
                    
// Если текст больше заданного предела, обрезаем
                    
if (mb_strlen($text) > $this->settings['size']) {
                        
$text = mb_substr($text, 0, $this->settings['size']);
                        
$text = htmlentities($text, ENT_QUOTES, 'UTF-8');
                        
$text .= ' <a href="news/index.php">' . $lng['next'] . '...</a>';
                    } else {
                        
$text = htmlentities($text, ENT_QUOTES, 'UTF-8');
                    }
                    
// Если включены переносы, то обрабатываем
                    
if ($this->settings['breaks'])
                        
$text = str_replace("rn", "<br/>", $text);
                    
// Обрабатываем тэги
                    
if ($this->settings['tags']) {
                        
$text = bbcode::tags($text);
                    } else {
                        
$text = bbcode::notags($text);
                    }
                    
// Обрабатываем смайлы
                    
if ($this->settings['smileys']) {
                        
$text = functions::smileys($text);
                    }
                    
// Определяем режим просмотра заголовка - текста
                    
$news .= '<div class="news">';
                    switch (
$this->settings['view']) {
                        case 
2:
                            
$news .= '<a href="news/index.php">' . $res['name'] . '</a>';
                            break;

                        case 
3:
                            
$news .= $text;
                            break;
                            default :
                        
$news .= '<b>' . $res['name'] . '</b><br />' . $text;
                    }
                    
// Ссылка на каменты
                    
if (!empty($res['kom']) && $this->settings['view'] != 2 && $this->settings['kom'] == 1) {
                        
$mes = mysql_query("SELECT COUNT(*) FROM `forum` WHERE `type` = 'm' AND `refid` = '" . $res['kom'] . "'");
                        
$komm = mysql_result($mes, 0) - 1;
                        if (
$komm >= 0)
                            
$news .= '<br /><a href="../forum/?id=' . $res['kom'] . '">' . $lng['discuss'] . '</a> (' . $komm . ')';
                    }
                    
$news .= '</div>';
                    ++
$i;
                }
                return 
$news;
            } else {
                return 
false;
            }
        }
    }

    
// Счетчик всех новостей
    
private function newscount() {
        
$req = mysql_query("SELECT COUNT(*) FROM `news`");
        
$res = mysql_result($req, 0);
        return (
$res > 0 ? $res : '0');
    }

    
// Счетчик свежих новостей
    
private function lastnewscount() {
        
$req = mysql_query("SELECT COUNT(*) FROM `news` WHERE `time` > '" . (time() - 259200) . "'");
        
$res = mysql_result($req, 0);
        return (
$res > 0 ? '/<span class="red">+' . $res . '</span>' : false);
    }
}
Онлайн: 2
Реклама