Home
last modified time | relevance | path

Searched refs:_REQUEST (Results 1 – 7 of 7) sorted by path

/dokuwiki/
H A Ddoku.php29 } elseif (!empty($_REQUEST['idx'])) {
31 } elseif (isset($_REQUEST['do'])) {
32 $ACT = $_REQUEST['do'];
H A Dinstall.php32 if (isset($_REQUEST['l']) && !is_array($_REQUEST['l'])) {
33 $LC = preg_replace('/[^a-z\-]+/', '', $_REQUEST['l']);
148 } elseif (check_data($_REQUEST['d'])) {
150 if (!store_data($_REQUEST['d'])) {
158 print_form($_REQUEST['d']);
328 if (isset($_REQUEST['submit'])) {
/dokuwiki/inc/HTTP/
H A DDokuHTTPClient.php38 isset($_REQUEST['httpdebug']) ||
/dokuwiki/inc/Input/
H A DGet.php19 * Sets a parameter in $_GET and $_REQUEST
27 $_REQUEST[$name] = $value;
H A DInput.php6 * Encapsulates access to the $_REQUEST array, making sure used parameters are initialized and
9 * All function access the $_REQUEST array by default, if you want to access $_POST or $_GET
35 $this->access = &$_REQUEST;
73 * the parameter is set to $_POST or $_GET and to $_REQUEST
259 * Eg. $_REQUEST['do']['save']='Speichern' becomes $_REQUEST['do'] = 'save'
H A DPost.php19 * Sets a parameter in $_POST and $_REQUEST
27 $_REQUEST[$name] = $value;
/dokuwiki/inc/
H A Dinit.php189 $_REQUEST = array_merge($_GET, $_POST);
192 if (isset($_REQUEST['purge']) && !empty($_SERVER['HTTP_REFERER'])) unset($_REQUEST['purge']);
182 $_REQUEST = array_merge($_GET,$_POST); global() variable