Файл: upload/module/api/include/component/controller/method.class.php
Строк: 32
<?php
/**
* [PHPFOX_HEADER]
*/
defined('PHPFOX') or exit('NO DICE!');
/**
*
*
* @copyright [PHPFOX_COPYRIGHT]
* @author Raymond_Benc
* @package Phpfox_Component
* @version $Id: method.class.php 2278 2011-01-21 16:01:52Z Raymond_Benc $
*/
class Api_Component_Controller_Method extends Phpfox_Component
{
/**
* Class process method wnich is used to execute this component.
*/
public function process()
{
Phpfox::getService('api')->process();
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('api.component_controller_method_clean')) ? eval($sPlugin) : false);
}
}
?>