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/api/class.manifest.php
<?php
/**
* This file contains the iwp_manifest class
*
* @package IWP
* @subpackage Manifest
*/

require_once IWP_BASE_PATH .'/lib/class.manifest.php';

/**
* IWP Manifest class
*
* This class extends an IWP specific implementation of the base Manifest class
*
* @package IWP
* @subpackage Manifest
*/
class iwp_manifest extends Manifest
{
	public function __construct () {
		parent::__construct();
		$this->whiteListAdd('/^\/(tmp|cache|files|images|authorpics|attachments|content_images|logos|page_images|tools|nbproject|configs)$/i');
		$this->whiteListAdd('/^\/javascript\/jquery\.field\.js$/i');
		$this->whiteListAdd('/^\/templates\/(?!(generic(\/|$))|(marketing(\/|$))|(modern(\/|$)))/i');
		$this->whiteListAdd('/\.LCK$/i');	//	'lock' files which, I think, are from Dreamweaver or Contribute
	}
}