Home
last modified time | relevance | path

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

1234567

/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
[all...]
/plugin/elasticsearch/vendor/nyholm/dsn/src/Configuration/
H A 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)
[all...]
H A DPath.php29 public function __construct(string $scheme, string $path, array $parameters = [], array $authentication = []) argument
33 parent::__construct($scheme, $parameters);
44 public function withScheme(?string $scheme) argument
46 if (null === $scheme || '' === $scheme) {
50 return parent::withScheme($scheme);
H A DUrl.php39 public function __construct(?string $scheme, string $host, ?int $port = null, ?string $path = null, array $parameters = [], array $authentication = []) argument
45 parent::__construct($scheme, $parameters);
102 $scheme = $this->getScheme();
105 (empty($scheme) ? '' : $scheme.'://').
/plugin/fedauth/Auth/OpenID/
H A 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/
H A DUri.php43 private $scheme = ''; variable in GuzzleHttp\\Psr7\\Uri
124 $this->scheme,
148 * @param string $scheme
163 if ($scheme != '') {
164 $uri .= $scheme . ':';
425 return $this->scheme;
474 $scheme = $this->filterScheme($scheme);
476 if ($this->scheme === $scheme) {
481 $new->scheme = $scheme;
616 * @param string $scheme
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Transcoder/
H A 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/authgooglesheets/vendor/google/apiclient-services/src/CloudRun/
H A 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/evesso/phpoauthlib/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/oauth/vendor/lusitanian/oauth/src/OAuth/Common/Http/Uri/
H A DUri.php15 private $scheme = 'http'; variable in OAuth\\Common\\Http\\Uri\\Uri
85 if (!isset($uriParts['scheme'])) {
86 throw new InvalidArgumentException('Invalid URI: http|https scheme required');
89 $this->scheme = $uriParts['scheme'];
96 $this->port = strcmp('https', $uriParts['scheme']) ? 80 : 443;
149 return $this->scheme;
246 $uri = $this->scheme . '://' . $this->getRawAuthority();
289 $uri = $this->scheme . '://' . $this->getAuthority();
353 * @param string $scheme
355 setScheme($scheme) global() argument
[all...]
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 = '', $fragment = '') argument
60 $uri->setScheme($scheme);
150 * Determine URI scheme component from superglobal array
158 * @return string Returns http or https depending on the URI scheme
/plugin/openid/Auth/OpenID/
H A 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/
H A 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;
125 $this->scheme = $urlComponents["scheme"] ?? null;
286 if ($this->scheme === null) {
287 throw new ExceptionNotFound("The scheme was not found");
289 return $this->scheme;
295 * in a https scheme: Not the path has a leading `/` that makes the path absolute
296 * in a email scheme: the path is the email (without /) then
312 * @return bool - true if http, https scheme
369 * @return Url - add the scheme an
80 private ?string $scheme = null; global() variable in ComboStrap\\Web\\Url
530 setScheme(string $scheme) global() argument
[all...]
/plugin/icalevents/vendor/sabre/uri/tests/
H A DParseTest.php48 'scheme' => 'http',
74 'scheme' => 'ftp',
89 'scheme' => 'http',
101 'scheme' => null,
165 'scheme' => 'http',
/plugin/fedauth/Auth/
H A 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/openid/Auth/
H A 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/confmanager/action/
H A Dregisterconfig.php39 $scheme = new ConfigManagerSingleLineCoreConfig('scheme');
40 $scheme->setName($this->getLang('URL Schemes'));
41 $scheme->setDescription($this->getDescription('scheme'));
42 $event->data[] = $scheme;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/
H A 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/dirtylittlehelper/mermaid/editor/docs/
H A Djson.worker.js1scheme=e.scheme||h,this.authority=e.authority||h,this.path=e.path||h,this.query=e.query||h,this.fr…
/plugin/dirtylittlehelper/mermaid/editor/
H A Djson.worker.js1scheme=e.scheme||h,this.authority=e.authority||h,this.path=e.path||h,this.query=e.query||h,this.fr…
/plugin/linksenhanced/syntax/
H A Dlink.php155 list($scheme) = explode('://',$url);
156 $scheme = strtolower($scheme);
157 if(!in_array($scheme,$schemes)) $url = '';
259 list($scheme) = explode('://',$url);
260 $scheme = strtolower($scheme);
261 if(!in_array($scheme,$schemes)) $url = '';
/plugin/elasticsearch/vendor/nyholm/dsn/
H A DREADME.md65 $dsn = DsnParser::parse('scheme://127.0.0.1/foo/bar?key=value');
159 $dsn = DsnParser::parse('scheme://127.0.0.1/foo/bar?key=value');
222 { scheme:[//]authority[path][?query] | scheme:[//][userinfo]path[?query] | host:port[path][?query] }
224 scheme:
259 - scheme://127.0.0.1/foo/bar?key=value
260 - scheme://user:pass@127.0.0.1/foo/bar?key=value
261 - scheme:///var/local/run/memcached.socket?weight=25
262 - scheme://user:pass@/var/local/run/memcached.socket?weight=25
263 - scheme
[all...]
/plugin/elasticsearch/vendor/nyholm/dsn/src/
H A DDsnParser.php115 // Find the scheme if it exists and trim the double slash.
116 if (!preg_match('#^(?:(?<alt>['.self::UNRESERVED.self::SUB_DELIMS.'%]+:[0-9]+(?:[/?].*)?)|(?<scheme>[a-zA-Z0-9\+-\.]+):(?://)?(?<dsn>.*))$#', $dsn, $matches)) {
117 throw new SyntaxException($dsn, 'A DSN must contain a scheme [a-zA-Z0-9\+-\.]+ and a colon.');
119 $scheme = null;
121 if (!empty($matches['scheme'])) {
122 $scheme = $matches['scheme'];
127 return new Dsn($scheme);
143 return new Dsn($scheme, self::getQuery($parts));
149 return new Path($scheme,
[all...]

1234567