View file PF.Base/module/ban/include/component/controller/admincp/display.class.php

File size: 999B
<?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
{
	/**
	 * Controller
	 */
	public function process()
	{
        $this->setParam('aBanFilter', [
                'title' => _p('display_names'),
                'type'  => 'display_name',
                'url'   => 'admincp.ban.display',
                'form'  => _p('display_name')
            ]);
        
        return Phpfox_Module::instance()->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);
	}
}