View file PF.Base/module/forum/include/component/controller/tag.class.php

File size: 1.34Kb
<?php
/**
 * [PHPFOX_HEADER]
 */

defined('PHPFOX') or exit('NO DICE!');

/**
 * 
 * 
 * @copyright		[PHPFOX_COPYRIGHT]
 * @author  		Raymond Benc
 * @package 		Phpfox_Component
 * @version 		$Id: tag.class.php 3342 2011-10-21 12:59:32Z Raymond_Benc $
 */
class Forum_Component_Controller_Tag extends Phpfox_Component
{
	/**
	 * Controller
	 */
	public function process()
	{
		Phpfox::getUserParam('forum.can_view_forum', true);

		if (!defined('PHPFOX_GET_FORCE_REQ')) define('PHPFOX_GET_FORCE_REQ', true);

		if ($this->request()->get('module'))
		{
			if ($this->request()->get('req5'))
			{			
				return Phpfox_Module::instance()->setController('forum.forum');
			}
		}

		if ($sTag = $this->request()->get('req3'))
		{			
			return Phpfox_Module::instance()->setController('forum.forum');
		}
		
		$this->template()->setTitle(_p('forum_tags'))
			->setBreadCrumb(_p('forum'), $this->url()->makeUrl('forum'))
			->setBreadCrumb(_p('tags'), $this->url()->makeUrl('forum.tag'), true);
		
		$this->setParam('iTagDisplayLimit', Phpfox::getParam('forum.total_forum_tags_display'));
        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('forum.component_controller_tag_clean')) ? eval($sPlugin) : false);
	}
}