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
}
}