Home
last modified time | relevance | path

Searched refs:endpoint (Results 1 – 25 of 132) sorted by last modified time

123456

/plugin/openlayersmap/ol7/
H A Dol.js.map
/plugin/aichat/Model/OpenAI/
H A DGPT35Turbo.php
/plugin/oauthazure/
H A DAzure.php57 if (!isset($this->discovery[$endpoint])) return '';
58 return $this->discovery[$endpoint];
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DOtlDump.php4218 $endpoint = ($endCount[$n] + 1);
4219 for ($unichar = $startCount[$n]; $unichar < $endpoint; $unichar++) {
H A DTTFontFile.php4686 $endpoint = ($endCount[$n] + 1);
4687 for ($unichar = $startCount[$n]; $unichar < $endpoint; $unichar++) {
H A DTTFontFileAnalysis.php378 $endpoint = ($endCount[$n] + 1);
379 for ($unichar = $startCount[$n]; $unichar < $endpoint; $unichar++) {
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/Common/Http/Client/
H A DCurlClient.php51 * Any implementing HTTP providers should send a request to the provided endpoint with the parameters.
54 * @param UriInterface $endpoint
65 UriInterface $endpoint, argument
83 $extraHeaders['Host'] = 'Host: '.$endpoint->getHost();
88 curl_setopt($ch, CURLOPT_URL, $endpoint->getAbsoluteUri());
H A DStreamClient.php14 * Any implementing HTTP providers should send a request to the provided endpoint with the parameters.
17 * @param UriInterface $endpoint
28 UriInterface $endpoint, argument
46 $host = 'Host: '.$endpoint->getHost();
48 if ($endpoint->hasExplicitPortSpecified()) {
49 $host .= ':'.$endpoint->getPort();
63 $response = file_get_contents($endpoint->getAbsoluteUri(), false, $context);
H A DClientInterface.php14 * Any implementing HTTP providers should send a request to the provided endpoint with the parameters.
17 * @param UriInterface $endpoint
27 UriInterface $endpoint, argument
/plugin/oauth/
H A DHTTPClient.php17 UriInterface $endpoint,
26 $ok = $http->sendRequest($endpoint->getAbsoluteUri(), $requestBody, $method);
18 retrieveResponse(UriInterface $endpoint, $requestBody, array $extraHeaders = array(), $method = 'POST') global() argument
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/OAuth1/Service/
H A DTwitter.php61 public function setAuthorizationEndpoint($endpoint) argument
63 if ($endpoint != self::ENDPOINT_AUTHENTICATE && $endpoint != self::ENDPOINT_AUTHORIZE) {
65 sprintf("'%s' is not a correct Twitter authorization endpoint.", $endpoint)
68 $this->authorizationEndpoint = $endpoint;
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/OAuth2/Service/
H A DMailchimp.php71 // Set the right API endpoint.
93 * Set the right base endpoint.
100 $endpoint = 'https://login.mailchimp.com/oauth2/metadata?oauth_token='. $token->getAccessToken();
103 $response = $this->httpClient->retrieveResponse(new Uri($endpoint), array(), array(), 'GET');
/plugin/openid/Auth/OpenID/
H A DConsumer.php350 if ($endpoint === null) {
427 $endpoint =
827 $endpoint = $result;
1086 if ($endpoint !== null) {
1209 if (!$endpoint) {
1239 return $endpoint;
1854 public $endpoint; variable in Auth_OpenID_AuthRequest
1879 $this->endpoint = $endpoint;
2120 public $endpoint; variable in Auth_OpenID_ConsumerResponse
2127 $this->endpoint = $endpoint;
[all …]
H A DSReg.php98 * @param Auth_OpenID_ServiceEndpoint $endpoint The endpoint object as returned by OpenID discovery.
102 function Auth_OpenID_supportsSReg($endpoint) argument
104 return ($endpoint->usesExtension(Auth_OpenID_SREG_NS_URI_1_1) ||
105 $endpoint->usesExtension(Auth_OpenID_SREG_NS_URI_1_0));
H A DTrustRoot.php338 * @param Auth_OpenID_ServiceEndpoint $endpoint An XRDS BasicServiceEndpoint, as returned by
344 function filter_extractReturnURL($endpoint) argument
346 if ($endpoint->matchTypes([Auth_OpenID_RP_RETURN_TO_URL_TYPE])) {
347 return $endpoint;
357 foreach ($endpoint_list as $endpoint) {
358 if (filter_extractReturnURL($endpoint)) {
359 $result[] = $endpoint;
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DClient.php283 $endpoint = new Update();
284 $endpoint->setId($id);
285 $endpoint->setIndex($index);
320 $endpoint->setBody($requestData);
321 $endpoint->setParams($options);
323 $response = $this->requestEndpoint($endpoint);
578 public function requestEndpoint(AbstractEndpoint $endpoint): Response
581 \ltrim($endpoint->getURI(), '/'),
582 $endpoint->getMethod(),
583 $endpoint
546 requestEndpoint(AbstractEndpoint $endpoint) global() argument
[all...]
H A DIndex.php124 $endpoint = \class_exists(GetMapping::class) ? new GetMapping() : new MappingGet();
126 $response = $this->requestEndpoint($endpoint);
195 $endpoint = new UpdateByQuery();
202 $endpoint->setBody($body);
203 $endpoint->setParams($options);
205 return $this->requestEndpoint($endpoint);
217 $endpoint = new IndexEndpoint();
220 $endpoint->setId($doc->getId());
238 $endpoint->setBody($doc->getData());
239 $endpoint
664 requestEndpoint(AbstractEndpoint $endpoint) global() argument
[all...]
H A DMapping.php168 $endpoint = \class_exists(PutMapping::class) ? new PutMapping() : new Put();
169 $endpoint->setBody($this->toArray());
170 $endpoint->setParams($query);
172 return $index->requestEndpoint($endpoint);
H A DPipeline.php70 $endpoint = \class_exists(PutPipeline::class) ? new PutPipeline() : new Put();
71 $endpoint->setId($this->id);
72 $endpoint->setBody($this->toArray());
74 return $this->requestEndpoint($endpoint);
85 $endpoint = \class_exists(GetPipeline::class) ? new GetPipeline() : new Get();
86 $endpoint->setId($id);
88 return $this->requestEndpoint($endpoint);
99 $endpoint = \class_exists(DeletePipeline::class) ? new DeletePipeline() : new Delete();
100 $endpoint->setId($id);
102 return $this->requestEndpoint($endpoint);
175 requestEndpoint(AbstractEndpoint $endpoint) global() argument
[all...]
/plugin/elasticsearch/vendor/ruflin/elastica/src/Cluster/
H A DHealth.php188 $endpoint = new \Elasticsearch\Endpoints\Cluster\Health();
189 $endpoint->setParams(['level' => 'shards']);
191 $response = $this->_client->requestEndpoint($endpoint);
/plugin/elasticsearch/vendor/ruflin/elastica/src/Index/
H A DRecovery.php97 $endpoint = new RecoveryEndpoint();
99 $this->_response = $this->getIndex()->requestEndpoint($endpoint);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Namespaces/
H A DAbstractNamespace.php56 protected function performRequest(AbstractEndpoint $endpoint) argument
59 $endpoint->getMethod(),
60 $endpoint->getURI(),
61 $endpoint->getParams(),
62 $endpoint->getBody(),
63 $endpoint->getOptions()
66 return $this->transport->resultOrFuture($response, $endpoint->getOptions());
H A DCatNamespace.php51 $endpoint = $endpointBuilder('Cat\Aliases');
52 $endpoint->setParams($params);
53 $endpoint->setName($name);
55 return $this->performRequest($endpoint);
79 $endpoint = $endpointBuilder('Cat\Allocation');
80 $endpoint->setParams($params);
81 $endpoint->setNodeId($node_id);
83 return $this->performRequest($endpoint);
104 $endpoint = $endpointBuilder('Cat\Count');
105 $endpoint
[all...]
H A DCcrNamespace.php44 $endpoint = $endpointBuilder('Ccr\DeleteAutoFollowPattern');
45 $endpoint->setParams($params);
46 $endpoint->setName($name);
48 return $this->performRequest($endpoint);
67 $endpoint = $endpointBuilder('Ccr\Follow');
68 $endpoint->setParams($params);
69 $endpoint->setIndex($index);
70 $endpoint->setBody($body);
72 return $this->performRequest($endpoint);
88 $endpoint
[all...]
H A DClusterNamespace.php46 $endpoint = $endpointBuilder('Cluster\AllocationExplain');
47 $endpoint->setParams($params);
48 $endpoint->setBody($body);
50 return $this->performRequest($endpoint);
68 $endpoint = $endpointBuilder('Cluster\DeleteComponentTemplate');
69 $endpoint->setParams($params);
70 $endpoint->setName($name);
72 return $this->performRequest($endpoint);
87 $endpoint = $endpointBuilder('Cluster\DeleteVotingConfigExclusions');
88 $endpoint
[all...]

123456