Файл: upload/module/photo/include/component/controller/upload.class.php
Строк: 36
<?php
/**
* [PHPFOX_HEADER]
*/
defined('PHPFOX') or exit('NO DICE!');
/**
* Photo controller where we upload new images and includes
* a photo progress bar.
*
* @copyright [PHPFOX_COPYRIGHT]
* @author Raymond Benc
* @package Module_Photo
* @version $Id: upload.class.php 4166 2012-05-15 06:44:59Z Raymond_Benc $
*/
class Photo_Component_Controller_Upload extends Phpfox_Component
{
/**
* Class process method wnich is used to execute this component.
*/
public function process()
{
$this->url()->send('photo.add', array(), 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('photo.component_controller_upload_clean')) ? eval($sPlugin) : false);
}
}
?>