File size: 1.33Kb
<?php
/**
* [PHPFOX_HEADER]
*/
defined('PHPFOX') or exit('NO DICE!');
/**
*
*
* @copyright [PHPFOX_COPYRIGHT]
* @author Raymond Benc
* @package Phpfox_Component
* @version $Id: inner.class.php 5840 2013-05-09 06:14:35Z Raymond_Benc $
*/
class Ad_Component_Block_Inner extends Phpfox_Component
{
/**
* Controller
* This block shows an ad inside another block
*/
public function process()
{
(($sPlugin = Phpfox_Plugin::get('ad.component_block_inner_process__start')) ? eval($sPlugin) : false);
if (!Phpfox::getParam('ad.enable_ads'))
{
return false;
}
if ($this->getParam('sClass', '') == '')
{
return false;
}
$aAd = Ad_Service_Ad::instance()->getForLocation($this->getParam('sClass'));
if (!is_array($aAd))
{
return false;
}
if (is_array($aAd) && empty($aAd))
{
return false;
}
$this->template()->assign(array(
'aAd' => $aAd
)
);
(($sPlugin = Phpfox_Plugin::get('ad.component_block_inner_process__end')) ? eval($sPlugin) : false);
return null;
}
/**
* 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('ad.component_block_display_clean')) ? eval($sPlugin) : false);
}
}