2008-11-26 22:50:40 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* AgileBill - Open Billing Software
|
|
|
|
*
|
|
|
|
* This body of work is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the Open AgileBill License
|
|
|
|
* License as published at http://www.agileco.com/agilebill/license1-4.txt
|
|
|
|
*
|
|
|
|
* For questions, help, comments, discussion, etc., please join the
|
|
|
|
* Agileco community forums at http://forum.agileco.com/
|
|
|
|
*
|
|
|
|
* @link http://www.agileco.com/
|
|
|
|
* @copyright 2004-2008 Agileco, LLC.
|
|
|
|
* @license http://www.agileco.com/agilebill/license1-4.txt
|
|
|
|
* @author Tony Landis <tony@agileco.com>
|
|
|
|
* @package AgileBill
|
|
|
|
* @version 1.4.93
|
|
|
|
*/
|
|
|
|
|
|
|
|
class CORE_vars
|
|
|
|
{
|
|
|
|
var $f;
|
|
|
|
function CORE_vars()
|
|
|
|
{
|
2009-01-05 02:24:53 +00:00
|
|
|
if(isset($_GET) && count($_GET) > 0)
|
|
|
|
{
|
|
|
|
reset ( $_GET );
|
|
|
|
while ( list ($key, $val) = each ( $_GET ) ) {
|
|
|
|
$this->f["$key"] = $val;
|
2008-11-26 22:50:40 +00:00
|
|
|
}
|
2009-01-05 02:24:53 +00:00
|
|
|
reset ( $_GET );
|
2008-11-26 22:50:40 +00:00
|
|
|
}
|
2009-01-05 02:24:53 +00:00
|
|
|
if(isset($_POST) && count($_POST) > 0)
|
2008-11-26 22:50:40 +00:00
|
|
|
{
|
2009-01-05 02:24:53 +00:00
|
|
|
reset ( $_POST );
|
|
|
|
while ( list ($key, $val) = each ( $_POST ) ) $this->f["$key"] = $val;
|
|
|
|
reset ( $_POST );
|
|
|
|
}
|
2008-11-26 22:50:40 +00:00
|
|
|
|
|
|
|
// set the shortcuts:
|
|
|
|
if(!isset($this->f["_page"]))
|
|
|
|
{
|
|
|
|
global $_PAGE_SHORTCUTS;
|
|
|
|
for($i=0; $i<count($_PAGE_SHORTCUTS); $i++)
|
|
|
|
{
|
|
|
|
$shortcut = $_PAGE_SHORTCUTS[$i]["s"];
|
|
|
|
if(isset($this->f[$shortcut])) $this->f["_page"] = $_PAGE_SHORTCUTS[$i]["p"];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// mods for hardcoded vars in config/multi-site
|
|
|
|
global $hardcode;
|
|
|
|
if(is_array($hardcode)) {
|
2010-11-29 22:41:08 +00:00
|
|
|
foreach($hardcode as $hc => $value) {
|
|
|
|
$this->f[$hc] = $value;
|
2008-11-26 22:50:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function strip_slashes($arr) {
|
|
|
|
global $VAR;
|
|
|
|
if(get_magic_quotes_gpc()) {
|
|
|
|
for($i=0; $i<count($arr); $i++) {
|
|
|
|
$VAR[$arr[$i]] = htmlspecialchars(stripslashes($VAR[$arr[$i]]));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function strip_slashes_all() {
|
|
|
|
global $VAR;
|
|
|
|
if(get_magic_quotes_gpc()) {
|
|
|
|
foreach($VAR as $key=>$val) {
|
|
|
|
if(!is_array($val))
|
|
|
|
$VAR["$key"] = htmlspecialchars(stripslashes($val));
|
|
|
|
else
|
|
|
|
foreach($VAR["$key"] as $keya=>$vara) $VAR[$key][$keya] = htmlspecialchars(stripslashes($vara));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-01-05 02:24:53 +00:00
|
|
|
?>
|