Файл: upload/module/photo/include/component/block/warning.class.php
Строк: 39
<?php
/**
* [PHPFOX_HEADER]
*/
defined('PHPFOX') or exit('NO DICE!');
/**
*
*
* @copyright [PHPFOX_COPYRIGHT]
* @author Raymond Benc
* @package Phpfox_Component
* @version $Id: warning.class.php 271 2009-02-25 07:13:35Z Raymond_Benc $
*/
class Photo_Component_Block_Warning extends Phpfox_Component
{
/**
* Class process method wnich is used to execute this component.
*/
public function process()
{
$this->template()->assign('sLink', $this->request()->get('link'));
}
/**
* 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_block_warning_clean')) ? eval($sPlugin) : false);
}
}
?>