Home
last modified time | relevance | path

Searched refs:serviceName (Results 76 – 85 of 85) sorted by path

1234

/plugin/issuelinks/admin/
H A Drepoadmin.php114 $serviceName = $service::DISPLAY_NAME;
115 return $html . "<li><a data-service='$serviceID'>" . $serviceName . '</a></li>';
131 $serviceName = $service::DISPLAY_NAME;
145 $html .= '<p>No organisations available for ' . $serviceName . '</p>';
/plugin/issuelinks/classes/
H A DIssue.php42 private function __construct($serviceName, $projectKey, $issueId, $isMergeRequest) argument
44 if (empty($serviceName) || empty($projectKey) || empty($issueId) || !is_numeric($issueId)) {
51 $this->serviceID = $serviceName;
68 $serviceName, argument
74 $issueHash = $serviceName . $projectKey . $issueId . '!' . $isMergeRequest;
76 … self::$instances[$issueHash] = new Issue($serviceName, $projectKey, $issueId, $isMergeRequest);
/plugin/issuelinks/helper/
H A Ddata.php30 * @param string $serviceName The name of the project management service
35 public function importAllIssues($serviceName, $projectKey) argument
37 $lockfileKey = $this->getImportLockID($serviceName, $projectKey);
47 dbglog($serviceName);
48 $serviceClass = $services[$serviceName];
80 "Downloading all issues from $serviceName fpr project $projectKey failed ",
98 public function getImportLockID($serviceName, $projectKey) argument
100 return "_plugin__issuelinks_import_$serviceName-$projectKey";
228 public function getMergeRequestsForIssue($serviceName, $projectKey, $issueId, $isMergeRequest) argument
232 …$issues = $db->getMergeRequestsReferencingIssue($serviceName, $projectKey, $issueId, $isMergeReque…
H A Ddb.php282 * @param string $serviceName The name of the project management service
288 public function loadIssue($serviceName, $projectKey, $issueId, $isMergeRequest) argument
334 * @param string $serviceName The name of the project management service
340 public function getAllPageLinkingToIssue($serviceName, $projectKey, $issue_id, $isMergeRequest) argument
356 * @param string $serviceName The name of the project management service
363 public function removeOldLinks($serviceName, $projectKey, $issue_id, $isMergeRequest, $pages) argument
375 'service' => $serviceName,
392 * @param string $serviceName The name of the project management service
422 'service' => $serviceName,
465 * @param string $serviceName The name of the project management service
[all …]
/plugin/mantis/lib/
H A Dclass.soap_server.php1043 $this->wsdl->serviceName = $serviceName;
1058 $this->wsdl->bindings[$serviceName.'Binding'] = array(
1059 'name'=>$serviceName.'Binding',
1062 'portType'=>$serviceName.'PortType');
1063 $this->wsdl->ports[$serviceName.'Port'] = array(
1064 'binding'=>$serviceName.'Binding',
H A Dclass.wsdl.php492 $this->serviceName = $attrs['name'];
494 $this->debug('current service: ' . $this->serviceName);
754 <html><head><title>NuSOAP: '.$this->serviceName.'</title>
830 <div class=title>'.$this->serviceName.'</div>
993 $xml .= "\n<service name=\"" . $this->serviceName . '">';
H A Dnusoap.php4481 $this->wsdl->serviceName = $serviceName;
4496 $this->wsdl->bindings[$serviceName.'Binding'] = array(
4497 'name'=>$serviceName.'Binding',
4500 'portType'=>$serviceName.'PortType');
4501 $this->wsdl->ports[$serviceName.'Port'] = array(
4502 'binding'=>$serviceName.'Binding',
5004 $this->serviceName = $attrs['name'];
5006 $this->debug('current service: ' . $this->serviceName);
5266 <html><head><title>NuSOAP: '.$this->serviceName.'</title>
5342 <div class=title>'.$this->serviceName.'</div>
[all …]
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/
H A DServiceFactory.php64 * @param string $serviceName Name of the service
71 public function registerService($serviceName, $className) argument
81 $this->serviceClassMap[$version][ucfirst($serviceName)] = $className;
95 * @param string $serviceName Name of service to create
105 $serviceName, argument
118 $fullyQualifiedServiceName = $this->getFullyQualifiedServiceName($serviceName, $version);
138 * @param string $serviceName The name of the service of which to get the fully qualified name
143 private function getFullyQualifiedServiceName($serviceName, $type) argument
145 $serviceName = ucfirst($serviceName);
168 buildV2Service($serviceName, CredentialsInterface $credentials, TokenStorageInterface $storage, array $scopes, UriInterface $baseApiUri = null, $apiVersion = '') global() argument
193 resolveScopes($serviceName, array $scopes) global() argument
226 buildV1Service($serviceName, CredentialsInterface $credentials, TokenStorageInterface $storage, $scopes, UriInterface $baseApiUri = null) global() argument
[all...]
/plugin/socialshareprivacy2/SSP/
H A DREADME.md237 will have a `serviceName` property, holding the name of the service that was
244 will have a `serviceName` property, holding the name of the service that was
/plugin/socialshareprivacy2/SSP/scripts/
H A Djquery.socialshareprivacy.js309 …$share.trigger({type: 'socialshareprivacy:enable', serviceName: service_name, isClick: !event.isTr…
320 …$share.trigger({type: 'socialshareprivacy:disable', serviceName: service_name, isClick: !event.isT…

1234