uawdijnntqw1x1x1
IP : 52.14.25.155
Hostname : axolotl
Kernel : Linux axolotl 4.9.0-13-amd64 #1 SMP Debian 4.9.228-1 (2020-07-05) x86_64
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
OS : Linux
PATH:
/
var
/
www
/
axolotl
/
data
/
www
/
yar.axolotls.ru
/
bitrix
/
modules
/
main
/
lib
/
request.php
/
/
<?php namespace Bitrix\Main; use Bitrix\Main\Type; use Bitrix\Main\Text; use Bitrix\Main\IO; /** * Class Request contains current request * @package Bitrix\Main */ abstract class Request extends Type\ParameterDictionary { /** * @var Server */ protected $server; protected $requestedPage = null; protected $requestedPageDirectory = null; public function __construct(Server $server, array $request) { parent::__construct($request); $this->server = $server; } public function addFilter(Type\IRequestFilter $filter) { $filteredValues = $filter->filter($this->values); if ($filteredValues != null) $this->setValuesNoDemand($filteredValues); } public function getPhpSelf() { return $this->server->getPhpSelf(); } public function getScriptName() { return $this->server->getScriptName(); } public function getRequestedPage() { if ($this->requestedPage === null) { $page = $this->getScriptName(); if (!empty($page)) { $page = IO\Path::normalize($page); if (substr($page, 0, 1) !== "/" && !preg_match("#^[a-z]:[/\\\\]#i", $page)) { $page = "/".$page; } } $this->requestedPage = $page; } return $this->requestedPage; } public function getRequestedPageDirectory() { if ($this->requestedPageDirectory === null) { $requestedPage = $this->getRequestedPage(); $this->requestedPageDirectory = IO\Path::getDirectory($requestedPage); } return $this->requestedPageDirectory; } public function isAdminSection() { $requestedDir = $this->getRequestedPageDirectory(); return (substr($requestedDir, 0, strlen("/bitrix/admin/")) == "/bitrix/admin/" || substr($requestedDir, 0, strlen("/bitrix/updates/")) == "/bitrix/updates/" || (defined("ADMIN_SECTION") && ADMIN_SECTION == true) || (defined("BX_PUBLIC_TOOLS") && BX_PUBLIC_TOOLS === true) ); } /** * Returns true if current request is AJAX * @return bool */ public function isAjaxRequest() { return $this->server->get("HTTP_BX_AJAX") !== null || $this->server->get("HTTP_X_REQUESTED_WITH") === "XMLHttpRequest"; } }
/var/www/axolotl/data/www/yar.axolotls.ru/bitrix/modules/main/lib/request.php