Файл: upload/module/ban/include/component/controller/admincp/display.class.php
Строк: 48
<?php
/**
* [PHPFOX_HEADER]
*/
defined('PHPFOX') or exit('NO DICE!');
/**
*
*
* @copyright [PHPFOX_COPYRIGHT]
* @author Raymond Benc
* @package Phpfox_Component
* @version $Id: display.class.php 979 2009-09-14 14:05:38Z Raymond_Benc $
*/
class Ban_Component_Controller_Admincp_Display extends Phpfox_Component
{
/**
* Class process method wnich is used to execute this component.
*/
public function process()
{
$this->setParam('aBanFilter', array(
'title' => Phpfox::getPhrase('ban.display_names'),
'type' => 'display_name',
'url' => 'admincp.ban.display',
'form' => Phpfox::getPhrase('ban.display_name')
)
);
return Phpfox::getLib('module')->setController('ban.admincp.default');
}
/**
* 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('ban.component_controller_admincp_display_clean')) ? eval($sPlugin) : false);
}
}
?>