0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
coppermine
/
1.5.12-0
/
standard
/
htdocs
/
include
/
inspekt
/
[
Home
]
File: supercage.php
<?php /************************* Coppermine Photo Gallery ************************ Copyright (c) 2003-2011 Coppermine Dev Team v1.0 originally written by Gregory Demar This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3 as published by the Free Software Foundation. ******************************************** Coppermine version: 1.5.12 $HeadURL: https://coppermine.svn.sourceforge.net/svnroot/coppermine/trunk/cpg1.5.x/include/inspekt/supercage.php $ $Revision: 8154 $ **********************************************/ /** * Inspekt Supercage * * @author Ed Finkler <coj@funkatron.com> * * @package Inspekt */ if (!defined('IN_COPPERMINE')) { die('Not in Coppermine...'); } /** * require main Inspekt class */ require_once 'include/inspekt.php'; /** * require the Cage class */ require_once 'include/inspekt/cage.php'; /** * The Supercage object wraps ALL of the superglobals * */ Class Inspekt_Supercage { /** * The get cage * * @var Inspekt_Cage */ var $get; /** * The post cage * * @var Inspekt_Cage */ var $post; /** * The cookie cage * * @var Inspekt_Cage */ var $cookie; /** * The env cage * * @var Inspekt_Cage */ var $env; /** * The files cage * * @var Inspekt_Cage */ var $files; /** * The session cage * * @var Inspekt_Cage */ var $session; var $server; /** * Enter description here... * * @return Inspekt_Supercage */ function Inspekt_Supercage() { // placeholder } /** * Enter description here... * * @param boolean $strict * @return Inspekt_Supercage */ function Factory($strict = TRUE) { $sc = new Inspekt_Supercage(); $sc->_makeCages($strict); // eliminate the $_REQUEST superglobal if ($strict) { $_REQUEST = null; } return $sc; } /** * Enter description here... * * @see Inspekt_Supercage::Factory() * @param boolean $strict */ function _makeCages($strict=TRUE) { $this->get = Inspekt::makeGetCage($strict); $this->post = Inspekt::makePostCage($strict); $this->cookie = Inspekt::makeCookieCage($strict); $this->env = Inspekt::makeEnvCage($strict); $this->files = Inspekt::makeFilesCage($strict); /** * Don't put session in cage as it will nullify $_SESSION and we will loose the session completely. * TODO: Find a way to put the session data in cage and still retain the session correctly */ //$this->session= Inspekt::makeSessionCage($strict); $this->server = Inspekt::makeServerCage($strict); } }