Home
last modified time | relevance | path

Searched refs:service (Results 126 – 150 of 782) sorted by relevance

12345678910>>...32

/plugin/farm/
H A Dsoapserver.php47 $service = $args[2];
49 if($appname == '' || $apppwd == '' || $service == '') return array();
59 if(!isset($app['allowed'][$service])) return array();
60 if(!method_exists($this, 'service_'.$service)) return array();
63 foreach($app['allowed'][$service] as $k => $v) {
68 return call_user_func(array($this, 'service_'.$service), $serviceargs);
/plugin/shorty/
H A Dsyntax.php59 $service = strtolower(trim($match)); //strip spaces
61 if (!$service) return $this->getConf('default_service');
62 return $service;
/plugin/authgoogle/google/service/
H A DGoogle_ServiceResource.php45 private $service; variable in Google_ServiceResource
56 public function __construct($service, $serviceName, $resourceName, $resource) { argument
57 $this->service = $service;
140 $servicePath = $this->service->servicePath;
/plugin/issuelinks/
H A DWebhook.php27 foreach ($services as $service) {
28 if (!$service::isOurWebhook()) {
31 $handlingService = $service::getInstance();
/plugin/authgooglesheets/
H A Dhelper.php21 protected $service; variable in helper_plugin_authgooglesheets
42 $this->service = new Google_Service_Sheets($client);
138 … $this->service->spreadsheets_values->append($this->spreadsheetId, $range, $body, $params);
184 $this->service->spreadsheets_values->batchUpdate($this->spreadsheetId, $body);
230 $this->service->spreadsheets->batchUpdate($this->spreadsheetId, $body);
307 $response = $this->service->spreadsheets_values->get($this->spreadsheetId, $range);
327 $response = $this->service->spreadsheets_values->get($this->spreadsheetId, $range);
/plugin/evesso/
H A Daction.php103 $service = $hlp->loadService($servicename);
104 if(is_null($service)) return;
112 $service->login();
305 $service = $hlp->getService();
321 $html = $this->service_html($service);
323 $html .= $this->service_html($service);
341 function service_html($service) { argument
344 …ml .= '<a href="' . wl($ID, array('evessologin' => $service)) . '" class="plugin_evesso_' . $servi…
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudRun/
H A DGoogleCloudRunOpV2Revision.php96 public $service; variable in Google\\Service\\CloudRun\\GoogleCloudRunOpV2Revision
387 public function setService($service) argument
389 $this->service = $service;
396 return $this->service;
H A DGoogleCloudRunV2Revision.php96 public $service; variable in Google\\Service\\CloudRun\\GoogleCloudRunV2Revision
387 public function setService($service) argument
389 $this->service = $service;
396 return $this->service;
/plugin/socialshareprivacy2/
H A Daction.php85 list($service, $setting) = explode("_", $opt, 2);
92 "src" => $path_prefix."scripts/jquery.socialshareprivacy.$service.js"
95 $services[] = "'$service'";
/plugin/issuelinks/action/
H A Dajax.php71 $service = $services[$serviceId]::getInstance();
76 $response = $service->deleteWebhook($project, $INPUT->str('hookid'));
78 $response = $service->createWebhook($project);
133 $service = $services[$serviceId]::getInstance();
135 $repos = $service->getListOfAllReposAndHooks($org);
138 $orgAdvice = $service->getRepoPageText();
/plugin/fedauth/Auth/Yadis/
H A DManager.php423 $service = $manager->nextService();
427 $service = null;
430 return $service;
445 $service = $manager->current();
448 $service = null;
451 return $service;
/plugin/oauth/action/
H A Dlogin.php14 * to the third party service
90 // remove login form if single service is set
120 // remove login form if single service is set
152 foreach ($this->hlp->listServices() as $service) {
153 $html .= $service->loginButton();
187 $service = array_shift($enabledServices);
189 $url = wl($ID, ['oauthlogin' => $service->getServiceID()], true, '&');
/plugin/openid/Auth/Yadis/
H A DManager.php466 $service = $manager->nextService();
470 $service = null;
473 return $service;
489 $service = $manager->current();
492 $service = null;
495 return $service;
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/OAuth2/Service/
H A DMailchimp.php24 if (is_null($this->baseApiUri) && $storage->hasAccessToken($this->service())) {
25 $this->setBaseApiUri($storage->retrieveAccessToken($this->service()));
86 $this->setBaseApiUri($this->storage->retrieveAccessToken($this->service()));
H A DAbstractService.php53 throw new InvalidScopeException('Scope ' . $scope . ' is not valid for service ' . get_class($this));
121 $this->storage->storeAccessToken($this->service(), $token);
133 * @param array $extraHeaders Extra headers if applicable. These will override service-specific
141 $token = $this->storage->retrieveAccessToken($this->service());
215 $this->storage->storeAccessToken($this->service(), $token);
235 * Check if the given service need to generate a unique state token to build the authorization url.
267 * Retrieves the authorization state for the current service.
273 return $this->storage->retrieveAuthorizationState($this->service());
283 $this->storage->storeAuthorizationState($this->service(), $state);
287 * Return any additional headers always needed for this service implementatio
[all...]
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/DocBlock/
H A DTagFactory.php53 * @param object $service
58 public function addService($service); argument
/plugin/pgn4web/pgn4web/live/
H A Dlive-offline.pgn2 % it allows to announce the live games service as offline
5 [Event "live games service offline"]
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/OAuth1/Service/
H A DAbstractService.php55 $this->storage->storeAccessToken($this->service(), $token);
80 $storedRequestToken = $this->storage->retrieveAccessToken($this->service());
93 $this->storage->retrieveAccessToken($this->service()),
103 $this->storage->storeAccessToken($this->service(), $token);
125 * These will override service-specific any defaults.
134 $token = $this->storage->retrieveAccessToken($this->service());
145 * Return any additional headers always needed for this service implementation's OAuth calls.
155 * Return any additional headers always needed for this service implementation's API calls.
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Handler/
H A DLazyHandlerRegistryWithPsr11ContainerTest.php36 public function set($id, $service) argument
38 $this->services[$id] = $service;
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/EventDispatcher/
H A DLazyEventDispatcherWithPsr11ContainerTest.php36 public function set($id, $service) argument
38 $this->services[$id] = $service;
/plugin/evesso/phpoauthlib/src/OAuth/OAuth2/Service/
H A DAbstractService.php121 $this->storage->storeAccessToken($this->service(), $token);
144 $token = $this->storage->retrieveAccessToken($this->service());
218 $this->storage->storeAccessToken($this->service(), $token);
277 return $this->storage->retrieveAuthorizationState($this->service());
287 $this->storage->storeAuthorizationState($this->service(), $state);
/plugin/issuelinks/classes/
H A DIssue.php426 $service = $serviceProvider->getServices()[$this->serviceID];
427 …$name = $this->projectId . $service::getProjectIssueSeparator($this->isMergeRequest) . $this->issu…
459 $service = $serviceClassName::getInstance();
460 return $service->getIssueURL($this->projectId, $this->issueId, $this->isMergeRequest);
550 $service = $serviceClassName::getInstance();
553 $service->retrieveIssue($this);
578 $service = $serviceProvider->getServices()[$this->serviceID];
579 $this->isValid = $service::isIssueValid($this);
H A DServiceProvider.php21 list($service, $servicePostfix) = explode('.', $filename, 2);
27 $serviceClass = '\\dokuwiki\\plugin\\issuelinks\\services\\' . $service;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Namespaces/
H A DSecurityNamespace.php153 * Evicts tokens from the service account token caches.
156 * $params['service'] = (string) An identifier for the service name
157 * $params['name'] = (list) A comma-separated list of service token names
161 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-clear-service-token-caches.html
169 $service = $this->extractArgument($params, 'service');
176 $endpoint->setService($service);
203 * Creates a service account token for access without requiring basic authentication.
206 * $params['service']
[all...]
/plugin/authgooglesheets/vendor/google/apiclient/src/Service/
H A DResource.php66 public function __construct($service, $serviceName, $resourceName, $resource) argument
68 $this->rootUrl = $service->rootUrl;
69 $this->client = $service->getClient();
70 $this->servicePath = $service->servicePath;

12345678910>>...32