File size: 861B
<?php
/**
* [PHPFOX_HEADER]
*/
defined('PHPFOX') or exit('NO DICE!');
/**
*
*
* @copyright [PHPFOX_COPYRIGHT]
* @author Raymond_Benc
* @package Phpfox_Component
* @version $Id: template-logo.class.php 2818 2011-08-09 12:01:57Z Raymond_Benc $
*/
class Core_Component_Block_Template_Logo extends Phpfox_Component
{
/**
* Controller
*/
public function process()
{
$this->template()->assign([
'site_name' => Phpfox::getParam('core.site_title')
]);
(($sPlugin = Phpfox_Plugin::get('core.component_block_template_logo_process')) ? eval($sPlugin) : false);
}
/**
* 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('core.component_block_template_logo_clean')) ? eval($sPlugin) : false);
}
}