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/searchtips.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 just the search tips setting
 *
 * @package IWP
 * @subpackage IWP_FrontEnd
 */

class iwp_page_searchtips 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() {
		echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
	<title>' . GetLang('SearchTips') . '</title>
	<link href="' . IWP_TPL_URI . '/styles/styles.css" type="text/css" rel="stylesheet" />
	<link href="'. IWP_TPL_URI . '/styles/'. iwp_config::Get('SiteColor') . '.css" type="text/css" rel="stylesheet" class="tplSiteColor" />
	<script type="text/javascript" src="' . IWP_BASE_URI .'/javascript/jquery.js"></script>
	<script type="text/javascript" src="' . IWP_BASE_URI .'/javascript/common.js"></script>
	<script type="text/javascript" src="' . IWP_BASE_URI .'/javascript/search.js"></script>
	<script type="text/javascript" src="' . IWP_BASE_URI .'/javascript/jquery.ui.frontend.js"></script>

</head>

<body class="searchTips">
' .  iwp_language::GetHtml('search.tips') .'
 </body>
</html>';
	}
}