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