View file PF.Base/module/comment/include/component/controller/view.class.php

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

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

/**
 * 
 * 
 * @copyright		[PHPFOX_COPYRIGHT]
 * @author  		Raymond Benc
 * @package 		Phpfox_Component
 * @version 		$Id: view.class.php 3686 2011-12-06 11:29:46Z Raymond_Benc $
 */
class Comment_Component_Controller_View extends Phpfox_Component
{
	/**
	 * Controller
	 */
	public function process()
	{
		if (($iCommentId = $this->request()->getInt('req3')))
		{
			$aComment = Comment_Service_Comment::instance()->getComment($iCommentId);

			if (!isset($aComment['comment_id']))
			{
				return Phpfox_Error::display(_p('comment_does_not_exist'));
			}			
						
			if (Phpfox::hasCallback('comment', 'getRedirectRequest'))
			{
				$this->url()->forward(Phpfox::callback('comment.getRedirectRequest', $aComment['comment_id']));
			}			
			
			if (Phpfox::hasCallback($aComment['type_id'], 'getParentItemCommentUrl'))
			{
				$sNewUrl = Phpfox::callback($aComment['type_id'] . '.getParentItemCommentUrl', $aComment);
				if ($sNewUrl !== false)
				{
					$aComment['callback_url'] = $sNewUrl;
				}
			}
			
			$this->template()->setTitle(_p('viewing_comment'))
				->setHeader(array(
						'view.css' => 'module_comment'
					)
				)
				->setBreadCrumb(_p('viewing_comment'))
				->assign(array(
					'aComment' => $aComment
				)
			);
		}
		else
		{
			$aComment = Comment_Service_Comment::instance()->getComment($this->request()->getInt('id'));
			
			if (!isset($aComment['comment_id']))
			{
				return Phpfox_Error::display(_p('comment_does_not_exist'));
			}
			
			$this->url()->forward(Phpfox::callback('comment.getRedirectRequest', $aComment['comment_id']));
		}
        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('comment.component_controller_view_clean')) ? eval($sPlugin) : false);
	}
}