PATH:
home
/
letacommog
/
aperobusiness
/
wp-content
/
plugins
/
modern-events-calendar
/
app
/
libraries
<?php /** no direct access **/ defined('MECEXEC') or die(); /** * Webnus MEC request class. * @author Webnus <info@webnus.biz> */ class MEC_request extends MEC_base { /** * Constructor method * @author Webnus <info@webnus.biz> */ public function __construct() { } /** * Returns Request Method * @author Webnus <info@webnus.biz> * @static * @return string */ public static function get_method() { return strtoupper($_SERVER['REQUEST_METHOD']); } /** * Get a variable from Request parameters * @author Webnus <info@webnus.biz> * @static * @param string $name * @param mixed $default * @param string $hash * @return mixed */ public static function getVar($name, $default = null, $hash = 'default') { // Ensure hash and type are uppercase $hash = strtoupper($hash); if($hash === 'METHOD') { $hash = strtoupper($_SERVER['REQUEST_METHOD']); } // Get the input hash switch($hash) { case 'GET': $input = &$_GET; break; case 'POST': $input = &$_POST; break; case 'FILES': $input = &$_FILES; break; case 'COOKIE': $input = &$_COOKIE; break; case 'ENV': $input = &$_ENV; break; case 'SERVER': $input = &$_SERVER; break; default: $input = &$_REQUEST; $hash = 'REQUEST'; break; } $var = (isset($input[$name]) and !is_null($input[$name])) ? $input[$name] : $default; return $var; } /** * Get whole of request variables * @author Webnus <info@webnus.biz> * @static * @param string $hash * @return mixed */ public static function get($hash = 'default') { // Ensure hash and type are uppercase $hash = strtoupper($hash); if($hash === 'METHOD') { $hash = strtoupper($_SERVER['REQUEST_METHOD']); } switch($hash) { case 'GET': $input = $_GET; break; case 'POST': $input = $_POST; break; case 'FILES': $input = $_FILES; break; case 'COOKIE': $input = $_COOKIE; break; case 'ENV': $input = &$_ENV; break; case 'SERVER': $input = &$_SERVER; break; default: $input = $_REQUEST; break; } return $input; } /** * Sets a new variable to the request parameters * @author Webnus <info@webnus.biz> * @static * @param string $name * @param mixed $value * @param string $hash * @return mixed */ public static function setVar($name, $value = null, $hash = 'method') { // Get the request hash value $hash = strtoupper($hash); if($hash === 'METHOD') $hash = strtoupper($_SERVER['REQUEST_METHOD']); $previous = array_key_exists($name, $_REQUEST) ? $_REQUEST[$name] : null; switch($hash) { case 'GET': $_GET[$name] = $value; $_REQUEST[$name] = $value; break; case 'POST': $_POST[$name] = $value; $_REQUEST[$name] = $value; break; case 'COOKIE': $_COOKIE[$name] = $value; $_REQUEST[$name] = $value; break; case 'FILES': $_FILES[$name] = $value; break; case 'ENV': $_ENV['name'] = $value; break; case 'SERVER': $_SERVER['name'] = $value; break; } return $previous; } }
[+]
..
[-] envato.php
[edit]
[-] render.php
[edit]
[-] syncSchedule.php
[edit]
[-] qrcode.php
[edit]
[-] pro.php
[edit]
[-] skins.php
[edit]
[-] db.php
[edit]
[-] filesystem.php
[edit]
[-] notifications.php
[edit]
[-] parser.php
[edit]
[-] schedule.php
[edit]
[-] base.php
[edit]
[-] factory.php
[edit]
[-] feed.php
[edit]
[-] main.php
[edit]
[-] request.php
[edit]
[-] book.php
[edit]
[-] index.html
[edit]