HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
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');
	}
}