/plugin/evesso/phpoauthlib/src/OAuth/Common/Http/Uri/ |
H A D | Uri.php | 20 private $userInfo = ''; variable in OAuth\\Common\\Http\\Uri\\Uri 112 $userInfo = ''; 114 $userInfo .= $uriParts['user']; 117 $userInfo .= ':' . $uriParts['pass']; 120 $this->setUserInfo($userInfo); 157 return $this->userInfo; 216 $authority = $this->userInfo ? $this->userInfo.'@' : ''; 362 * @param string $userInfo 364 public function setUserInfo($userInfo) argument 366 $this->userInfo = $userInfo ? $this->protectUserInfo($userInfo) : ''; [all …]
|
H A D | UriFactoryInterface.php | 32 * @param string $userInfo 41 …public function createFromParts($scheme, $userInfo, $host, $port, $path = '', $query = '', $fragme… argument
|
H A D | UriFactory.php | 48 * @param string $userInfo 57 …public function createFromParts($scheme, $userInfo, $host, $port, $path = '', $query = '', $fragme… argument 61 $uri->setUserInfo($userInfo);
|
H A D | UriInterface.php | 78 * @param string $userInfo 80 public function setUserInfo($userInfo); argument
|
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/Common/Http/Uri/ |
H A D | Uri.php | 20 private $userInfo = ''; variable in OAuth\\Common\\Http\\Uri\\Uri 112 $userInfo = ''; 114 $userInfo .= $uriParts['user']; 116 if ($userInfo && !empty($uriParts['pass'])) { 117 $userInfo .= ':' . $uriParts['pass']; 120 $this->setUserInfo($userInfo); 157 return $this->userInfo; 216 $authority = $this->userInfo ? $this->userInfo.'@' : ''; 362 * @param string $userInfo 364 setUserInfo($userInfo) global() argument [all...] |
H A D | UriFactoryInterface.php | 32 * @param string $userInfo 41 public function createFromParts($scheme, $userInfo, $host, $port, $path = '', $query = '', $fragment = ''); argument
|
H A D | UriFactory.php | 48 * @param string $userInfo 57 public function createFromParts($scheme, $userInfo, $host, $port, $path = '', $query = '', $fragment = '') argument 61 $uri->setUserInfo($userInfo);
|
H A D | UriInterface.php | 78 * @param string $userInfo 80 public function setUserInfo($userInfo); argument
|
/plugin/authshibboleth/plugin/authshibboleth/ |
H A D | auth.php | 85 protected $userInfo = array(); variable in auth_plugin_authshibboleth 357 if (! $userInfo) { 385 return $userInfo; 393 $userInfo = $this->getUserInfo(); 399 … $userline = join(':',array($userInfo['uid'], $userInfo['name'], $userInfo['mail'], $groups))."\n"; 416 * @param array $userInfo 422 if (! $userInfo) { 426 $USERINFO = $userInfo; 850 * @param array $userInfo 854 $this->userInfo = $userInfo; [all …]
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/RecommendationsAI/ |
H A D | GoogleCloudRecommendationengineV1beta1UserEvent.php | 114 public function setUserInfo(GoogleCloudRecommendationengineV1beta1UserInfo $userInfo) argument 116 $this->userInfo = $userInfo; 123 return $this->userInfo;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Safebrowsing/ |
H A D | GoogleSecuritySafebrowsingV4ThreatHit.php | 113 public function setUserInfo(GoogleSecuritySafebrowsingV4ThreatHitUserInfo $userInfo) argument 115 $this->userInfo = $userInfo; 122 return $this->userInfo;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Books/ |
H A D | Volume.php | 182 public function setUserInfo(VolumeUserInfo $userInfo) argument 184 $this->userInfo = $userInfo; 191 return $this->userInfo;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudRetail/ |
H A D | GoogleCloudRetailV2SearchRequest.php | 315 public function setUserInfo(GoogleCloudRetailV2UserInfo $userInfo) argument 317 $this->userInfo = $userInfo; 324 return $this->userInfo;
|
H A D | GoogleCloudRetailV2UserEvent.php | 349 public function setUserInfo(GoogleCloudRetailV2UserInfo $userInfo) argument 351 $this->userInfo = $userInfo; 358 return $this->userInfo;
|
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/ |
H A D | Uri.php | 46 private $userInfo = ''; variable in GuzzleHttp\\Psr7\\Uri 431 if ($this->userInfo !== '') { 432 $authority = $this->userInfo . '@' . $authority; 444 return $this->userInfo; 495 if ($this->userInfo === $info) { 500 $new->userInfo = $info; 590 $this->userInfo = isset($parts['user']) 609 $this->userInfo .= ':' . $this->filterUserInfoComponent($parts['pass']);
|
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Exception/ |
H A D | RequestException.php | 139 $userInfo = $uri->getUserInfo(); 141 if (false !== ($pos = strpos($userInfo, ':'))) { 142 return $uri->withUserInfo(substr($userInfo, 0, $pos), '***');
|
/plugin/authclientcert/ |
H A D | auth.php | 80 $userInfo = $this->getUserData($user); 81 if ($userInfo !== false) { 83 return $userInfo;
|
/plugin/diagramsnet/lib/WEB-INF/lib/ |
H A D | pusher-http-java-1.0.0.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/pusher/
com/ ... |
H A D | httpclient-4.5.5.jar | META-INF/MANIFEST.MF
META-INF/
org/
org/apache/
org/ ... |
/plugin/diagramsnet/lib/js/diagramly/ |
H A D | GitHubClient.js | 119 GitHubClient.prototype.createUser = function(userInfo) argument 121 return new DrawioUser(userInfo.id, userInfo.email, userInfo.name);
|
/plugin/authgoogle/google/contrib/ |
H A D | Google_BooksService.php | 2625 public $userInfo; variable in Google_Volume 2683 public function setUserInfo(Google_VolumeUserInfo $userInfo) { argument 2684 $this->userInfo = $userInfo; 2687 return $this->userInfo;
|
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/ |
H A D | CHANGELOG.md | 97 - Fixed encoding of special characters in the `userInfo` component of an URI (#253)
|