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

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

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

/**
 * 
 * 
 * @copyright		[PHPFOX_COPYRIGHT]
 * @author  		Raymond Benc
 * @package 		Phpfox_Component
 * @version 		$Id: rss.class.php 981 2009-09-15 13:53:22Z Raymond_Benc $
 */
class Comment_Component_Controller_Rss extends Phpfox_Component
{
	/**
	 * Controller
	 */
	public function process()
	{
		if (!Phpfox::getParam('comment.allow_rss_feed_on_comments'))
		{
			return Phpfox_Error::set(_p('rss_feeds_are_disabled_for_comments'));
		}
        if (!Phpfox::isModule('rss')){
            $this->url()->send('');
        }
		$sType = $this->request()->get('type');
        $iItemId = $this->request()->getInt('item');
		$aRss = Comment_Service_Comment::instance()->getForRss($sType, $iItemId);
        Rss_Service_Rss::instance()->output($aRss);
        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_rss_clean')) ? eval($sPlugin) : false);
	}
}