Your IP : 216.73.216.240
<?php
/**
* @package My RSS Reader
* @copyright Copyright (C) 2010 FalsinSoft. All rights reserved.
* @license GNU/GPL
* @website http://falsinsoft-joomla.blogspot.com
* @email falsinsoft@gmail.com
*
*/
defined('_JEXEC') or die();
jimport('joomla.application.component.controller');
class MyRSSReaderController extends JController
{
function display()
{
if(!JRequest::getCmd('view'))
{
JRequest::setVar('view', 'rss');
}
$rss_model =& $this->getModel('RSS');
$layout_model =& $this->getModel('Layout');
$view =& $this->getView(JRequest::getVar('view'), 'html');
$view->setModel($rss_model);
$view->setModel($layout_model);
parent::display();
}
}