Файл: housetrack/modules/friends/helpers/friends_events.php
Строк: 29
<?php
/**
* MobileCMS
*
* Open source content management system for mobile sites
*
* @author MobileCMS Team <support@mobilecms.ru>
* @copyright Copyright (c) 2011, MobileCMS Team
* @link http://mobilecms.ru Official site
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*/
defined('IN_SYSTEM') or die('<b>403<br />Запрет доступа!</b>');
//---------------------------------------------
/**
* Хелпер событий модуля событий
*/
class friends_events {
/**
* Перед выполнением контроллера
*/
public static function pre_controller(&$db) {
if(USER_ID != -1) {
$new_friends = $db->get_one("SELECT COUNT(*) FROM #__friends WHERE friends_user_id = '". USER_ID ."' AND status = 'new'");
if($new_friends > 0) define('FRIENDS_NEW', $new_friends);
}
}
}
?>