Файл: upload/module/mail/include/component/controller/box/index.class.php
Строк: 36
<?php
/**
* [PHPFOX_HEADER]
*/
defined('PHPFOX') or exit('NO DICE!');
/**
*
*
* @copyright [PHPFOX_COPYRIGHT]
* @author Raymond Benc
* @package Module_Mail
* @version $Id: index.class.php 2696 2011-06-30 19:30:33Z Raymond_Benc $
*/
class Mail_Component_Controller_Box_Index extends Phpfox_Component
{
/**
* Class process method wnich is used to execute this component.
*/
public function process()
{
$this->url()->send('mail', array('view' => 'box', 'id' => $this->request()->getInt('id')), null, 301);
}
/**
* 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_controller_box_index_clean')) ? eval($sPlugin) : false);
}
}
?>