View file mc-2.7.0/modules/private/helpers/private_events.php

File size: 935B
<?php

/**
 * MobileCMS
 *
 * Open source content management system for mobile sites
 *
 * @author MobileCMS Team <[email protected]>
 * @copyright Copyright (c) 2011-2019, MobileCMS Team
 * @link https://mobilecms.pro Official site
 * @license MIT license
 */
defined('IN_SYSTEM') or die('<b>403<br />Запрет доступа!</b>');

//---------------------------------------------

/**
 * Хелпер событий модуля событий
 */
class private_events {

    /**
     * Перед выполнением контроллера
     */
    public static function pre_controller($db) {
        if (USER_ID != -1) {
            $new_messages = $db->get_one("SELECT COUNT(*) FROM #__private_messages WHERE user_to_id = '" . USER_ID . "' AND user_id = '" . USER_ID . "' AND folder = 'new'");
            if ($new_messages > 0)
                define('PRIVATE_NEW_MESSAGES', $new_messages);
        }
    }

}

?>