Файл: upload/module/profile/include/component/controller/design.class.php
Строк: 38
<?php
/**
* [PHPFOX_HEADER]
*/
defined('PHPFOX') or exit('NO DICE!');
/**
*
*
* @copyright [PHPFOX_COPYRIGHT]
* @author Raymond Benc
* @package Phpfox_Component
* @version $Id: design.class.php 402 2009-04-13 08:33:48Z Raymond_Benc $
*/
class Profile_Component_Controller_Design extends Phpfox_Component
{
/**
* Class process method wnich is used to execute this component.
*/
public function process()
{
Phpfox::isUser(true);
$this->url()->send(Phpfox::getUserBy('user_name'), 'design');
}
/**
* 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('profile.component_controller_design_clean')) ? eval($sPlugin) : false);
}
}
?>