Файл: upload/module/music/include/component/controller/frame.class.php
Строк: 35
<?php
/**
* [PHPFOX_HEADER]
*/
defined('PHPFOX') or exit('NO DICE!');
/**
*
*
* @copyright [PHPFOX_COPYRIGHT]
* @author Raymond_Benc
* @package Phpfox_Component
* @version $Id: frame.class.php 2577 2011-04-29 08:48:05Z Raymond_Benc $
*/
class Music_Component_Controller_Frame extends Phpfox_Component
{
/**
* Class process method wnich is used to execute this component.
*/
public function process()
{
Phpfox::getComponent('music.upload', array('bNoTemplate' => true), 'controller');
exit;
}
/**
* 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('music.component_controller_frame_clean')) ? eval($sPlugin) : false);
}
}
?>