Home
last modified time | relevance | path

Searched refs:scheme (Results 1 – 25 of 215) sorted by relevance

123456789

/plugin/combo/ComboStrap/
H A DFileSystems.php17 $scheme = $path->getScheme();
18 switch ($scheme) {
26 throw new ExceptionRuntime("File system ($scheme) unknown");
35 $scheme = $path->getScheme();
36 switch ($scheme) {
42 throw new ExceptionRuntime("File system ($scheme) unknown");
50 $scheme = $path->getScheme();
51 switch ($scheme) {
58 throw new ExceptionRuntime("File system ($scheme) unknown");
68 $scheme = $path->getScheme();
[all …]
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/
DURISchemeRegistry.php36 * @param string $scheme String scheme name like http or mailto
41 public function getScheme($scheme, $config, $context) argument
50 !isset($allowed_schemes[$scheme])
55 if (isset($this->schemes[$scheme])) {
56 return $this->schemes[$scheme];
58 if (!isset($allowed_schemes[$scheme])) {
62 $class = 'HTMLPurifier_URIScheme_' . $scheme;
66 $this->schemes[$scheme] = new $class();
67 return $this->schemes[$scheme];
72 * @param string $scheme Scheme name
[all …]
DURI.php16 public $scheme; variable in HTMLPurifier_URI
49 * @param string $scheme
58 public function __construct($scheme, $userinfo, $host, $port, $path, $query, $fragment) argument
60 $this->scheme = is_null($scheme) || ctype_lower($scheme) ? $scheme : strtolower($scheme);
78 if ($this->scheme !== null) {
79 $scheme_obj = $registry->getScheme($this->scheme, $config, $context);
130 if (!is_null($this->scheme) && is_null($this->host) || $this->host === '') {
134 if ($def->defaultScheme === $this->scheme) {
135 $this->scheme = null;
178 } elseif (!is_null($this->scheme)) {
[all …]
DURIScheme.php72 (!is_null($uri->scheme) && ($uri->host === '' || is_null($uri->host))) ||
76 (is_null($uri->scheme) && $uri->host === '')
79 if (is_null($uri->scheme)) {
/plugin/elasticsearch/vendor/nyholm/dsn/src/Configuration/
DDsn.php19 private $scheme; variable in Nyholm\\Dsn\\Configuration\\Dsn
26 public function __construct(?string $scheme, array $parameters = []) argument
28 $this->scheme = $scheme;
34 return $this->scheme;
40 public function withScheme(?string $scheme) argument
43 $new->scheme = $scheme;
118 $scheme = $this->getScheme();
121 (empty($scheme) ? '' : $scheme.'://').
DPath.php29 …public function __construct(string $scheme, string $path, array $parameters = [], array $authentic… argument
33 parent::__construct($scheme, $parameters);
44 public function withScheme(?string $scheme) argument
46 if (null === $scheme || '' === $scheme) {
50 return parent::withScheme($scheme);
DUrl.php39 …public function __construct(?string $scheme, string $host, ?int $port = null, ?string $path = null… argument
45 parent::__construct($scheme, $parameters);
102 $scheme = $this->getScheme();
105 (empty($scheme) ? '' : $scheme.'://').
/plugin/fedauth/Auth/OpenID/
DURINorm.php160 $scheme = $uri_matches[2];
161 if ($scheme) {
162 $scheme = strtolower($scheme);
165 $scheme = $uri_matches[2];
166 if ($scheme === '') {
171 $scheme = strtolower($scheme);
172 if (!in_array($scheme, array('http', 'https'))) {
216 ($scheme == 'http' && $port == ':80') ||
217 ($scheme == 'https' && $port == ':443')) {
246 return $scheme . '://' . $authority . $path . $query . $fragment;
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
DUri.php43 private $scheme = ''; variable in GuzzleHttp\\Psr7\\Uri
124 $this->scheme,
148 * @param string $scheme
158 public static function composeComponents($scheme, $authority, $path, $query, $fragment) argument
163 if ($scheme != '') {
164 $uri .= $scheme . ':';
167 if ($authority != ''|| $scheme === 'file') {
425 return $this->scheme;
472 public function withScheme($scheme) argument
474 $scheme = $this->filterScheme($scheme);
[all …]
/plugin/matrixnotifierwas/vendor/guzzlehttp/psr7/src/
DUri.php57 private $scheme = ''; variable in GuzzleHttp\\Psr7\\Uri
138 $this->scheme,
167 …public static function composeComponents(?string $scheme, ?string $authority, string $path, ?strin… argument
172 if ($scheme != '') {
173 $uri .= $scheme.':';
176 if ($authority != '' || $scheme === 'file') {
371 return $this->scheme;
418 public function withScheme($scheme): UriInterface argument
420 $scheme = $this->filterScheme($scheme);
422 if ($this->scheme === $scheme) {
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Transcoder/
DMpegCommonEncryption.php29 public $scheme; variable in Google\\Service\\Transcoder\\MpegCommonEncryption
48 public function setScheme($scheme) argument
50 $this->scheme = $scheme;
57 return $this->scheme;
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/Common/Http/Uri/
H A DUri.php15 private $scheme = 'http'; variable in OAuth\\Common\\Http\\Uri\\Uri
89 $this->scheme = $uriParts['scheme'];
149 return $this->scheme;
246 $uri = $this->scheme . '://' . $this->getRawAuthority();
289 $uri = $this->scheme . '://' . $this->getAuthority();
353 * @param string $scheme
355 public function setScheme($scheme) argument
357 $this->scheme = $scheme;
378 …if (('https' === $this->scheme && $this->port === 443) || ('http' === $this->scheme && $this->port…
H A DUriFactory.php25 $scheme = $this->detectScheme($_server);
31 return $this->createFromParts($scheme, '', $host, $port, $path, $query);
47 * @param string $scheme
57 …public function createFromParts($scheme, $userInfo, $host, $port, $path = '', $query = '', $fragme… argument
60 $uri->setScheme($scheme);
/plugin/evesso/phpoauthlib/src/OAuth/Common/Http/Uri/
DUri.php15 private $scheme = 'http'; variable in OAuth\\Common\\Http\\Uri\\Uri
89 $this->scheme = $uriParts['scheme'];
149 return $this->scheme;
246 $uri = $this->scheme . '://' . $this->getRawAuthority();
289 $uri = $this->scheme . '://' . $this->getAuthority();
353 * @param string $scheme
355 public function setScheme($scheme) argument
357 $this->scheme = $scheme;
378 …if (('https' === $this->scheme && $this->port === 443) || ('http' === $this->scheme && $this->port…
DUriFactory.php25 $scheme = $this->detectScheme($_server);
31 return $this->createFromParts($scheme, '', $host, $port, $path, $query);
47 * @param string $scheme
57 …public function createFromParts($scheme, $userInfo, $host, $port, $path = '', $query = '', $fragme… argument
60 $uri->setScheme($scheme);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudRun/
DHTTPGetAction.php36 public $scheme; variable in Google\\Service\\CloudRun\\HTTPGetAction
83 public function setScheme($scheme) argument
85 $this->scheme = $scheme;
92 return $this->scheme;
/plugin/openid/Auth/OpenID/
DURINorm.php167 $scheme = $uri_matches[2];
168 if ($scheme === '') {
173 $scheme = strtolower($scheme);
174 if (!in_array($scheme, ['http', 'https'])) {
218 ($scheme == 'http' && $port == ':80') ||
219 ($scheme == 'https' && $port == ':443')) {
248 return $scheme . '://' . $authority . $path . $query . $fragment;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceControl/
DRequest.php59 public $scheme; variable in Google\\Service\\ServiceControl\\Request
198 public function setScheme($scheme) argument
200 $this->scheme = $scheme;
207 return $this->scheme;
/plugin/combo/ComboStrap/Web/
H A DUrl.php77 private ?string $scheme = null; variable in ComboStrap\\Web\\Url
125 $this->scheme = $urlComponents["scheme"] ?? null;
313 if ($this->scheme === null) {
316 return $this->scheme;
567 public function setScheme(string $scheme): Url argument
569 $this->scheme = $scheme;
751 $scheme = $this->getScheme();
753 $scheme = null;
757 switch ($scheme) {
762 $base = "$scheme://";
[all …]
/plugin/icalevents/vendor/sabre/uri/tests/
DParseTest.php48 'scheme' => 'http',
74 'scheme' => 'ftp',
89 'scheme' => 'http',
101 'scheme' => null,
165 'scheme' => 'http',
/plugin/openid/Auth/
DOpenID.php378 * @param string $scheme The scheme (e.g. 'http'). Defaults to 'http'.
387 static function urlunparse($scheme, $host, $port = null, $path = '/', argument
391 if (!$scheme) {
392 $scheme = 'http';
403 $result = $scheme . "://" . $host;
442 $scheme = strtolower($parsed['scheme']);
443 if (!in_array($scheme, ['http', 'https'])) {
/plugin/fedauth/Auth/
DOpenID.php362 * @param string $scheme The scheme (e.g. 'http'). Defaults to 'http'.
371 static function urlunparse($scheme, $host, $port = null, $path = '/', argument
375 if (!$scheme) {
376 $scheme = 'http';
387 $result = $scheme . "://" . $host;
426 $scheme = strtolower($parsed['scheme']);
427 if (!in_array($scheme, array('http', 'https'))) {
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/
DStream.php191 if (isset($context[$scheme]['session'])) {
192 $sftp = $context[$scheme]['session'];
194 if (isset($context[$scheme]['sftp'])) {
195 $sftp = $context[$scheme]['sftp'];
201 if (isset($context[$scheme]['username'])) {
202 $user = $context[$scheme]['username'];
204 if (isset($context[$scheme]['password'])) {
205 $pass = $context[$scheme]['password'];
207 … if (isset($context[$scheme]['privkey']) && $context[$scheme]['privkey'] instanceof PrivateKey) {
208 $pass = $context[$scheme]['privkey'];
/plugin/confmanager/action/
Dregisterconfig.php39 $scheme = new ConfigManagerSingleLineCoreConfig('scheme');
40 $scheme->setName($this->getLang('URL Schemes'));
41 $scheme->setDescription($this->getDescription('scheme'));
42 $event->data[] = $scheme;
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/
DURI.DefaultScheme.txt7 Defines through what scheme the output will be served, in order to
8 select the proper object validator when no scheme information is present.
12 Starting with HTML Purifier 4.9.0, the default scheme can be null, in

123456789