Файл: upload/module/mail/include/component/block/notify.class.php
Строк: 37
<?php
/**
* [PHPFOX_HEADER]
*/
defined('PHPFOX') or exit('NO DICE!');
/**
*
*
* @copyright [PHPFOX_COPYRIGHT]
* @author Raymond_Benc
* @package Phpfox_Component
* @version $Id: notify.class.php 2632 2011-05-26 19:28:02Z Raymond_Benc $
*/
class Mail_Component_Block_Notify extends Phpfox_Component
{
/**
* Class process method wnich is used to execute this component.
*/
public function process()
{
$this->template()->assign(array(
'iTotalUnseenMessages' => 0// Phpfox::getService('mail')->getUnseenTotal()
)
);
}
/**
* Garbage collector. Is executed after this class has completed
* its job and the template has also been displayed.
*/
public function clean()
{
(($sPlugin = Phpfox_Plugin::get('mail.component_block_notify_clean')) ? eval($sPlugin) : false);
}
}
?>