File: D:/HostingSpaces/PvdBoogaard/indoorski.nl/backup/oude-site/cms/includes/pages/rsspage.php
<?php
/**
* This file contains the iwp_page_searchtips class
*
* @version $Id$
*
*
* @package IWP
* @subpackage IWP_FrontEnd
*/
/**
* Search Tips Page
* This class extends the iwp_engine abstract class.
* This class outputs the rss feed page
*
* @package IWP
* @subpackage IWP_FrontEnd
*/
class iwp_page_rsspage extends iwp_engine {
/**
* Calls the parent constructor
*
* @return void Doesn't return anything
*/
public function __construct() {
parent::__construct();
}
/**
* This function tells the controller to loads the advanced search page
*
* @return void Doesn't return anything
*/
public function ShowPage() {
$feedList = iwp_lists::getInstance()->GetListsRSSFeedList();
$categoryList = iwp_categories::getInstance()->GetCategoriesRSSFeedList();
$this->template->Assign('hasOtherFeeds', !empty($feedList));
$this->template->Assign('hasCategoryFeeds', !empty($categoryList));
$this->template->Assign('otherFeeds', $feedList);
$this->template->Assign('categoryFeeds', $categoryList);
// output the page
$this->controller->SetContent($this->template->ParseSection('rsspage_standard'));
$this->controller->ShowTemplate('rsspage');
}
}