/plugin/fedauth/Auth/OpenID/ |
H A D | SQLStore.php | 400 $assoc = $this->_get_assoc($server_url, $handle); 403 if ($assoc) { 404 $assocs[] = $assoc; 422 $assoc->secret = $this->blobDecode($assoc->secret); 424 if ($assoc->getExpiresIn() == 0) { 427 $associations[] = array($assoc->issued, $assoc); 434 foreach ($associations as $key => $assoc) { 435 $issued[$key] = $assoc[0]; 436 $assocs[$key] = $assoc[1]; 443 list($issued, $assoc) = $associations[0]; [all …]
|
H A D | MDB2Store.php | 341 $assoc = $this->connection->getRow($sql, $types, $params); 343 if (!$assoc || PEAR::isError($assoc)) { 346 $association = new Auth_OpenID_Association($assoc['handle'], 348 $assoc['secret']), 349 $assoc['issued'], 350 $assoc['lifetime'], 351 $assoc['assoc_type']); 352 fclose($assoc['secret']);
|
H A D | Server.php | 415 if (!$assoc) { 652 function answer($assoc) argument 1327 if (!$assoc) { 1348 if (!$assoc || ($assoc->getExpiresIn() <= 0)) { 1352 $assoc_type = ($assoc ? $assoc->assoc_type : 'HMAC-SHA1'); 1354 if ($assoc && ($assoc->getExpiresIn() <= 0)) { 1391 return $assoc; 1413 if (($assoc !== null) && ($assoc->getExpiresIn() <= 0)) { 1416 $assoc = null; 1420 return $assoc; [all …]
|
H A D | FileStore.php | 275 foreach ($matching_associations as $key => $assoc) { 276 $issued[$key] = $assoc[0]; 277 $assocs[$key] = $assoc[1]; 285 list($issued, $assoc) = $matching_associations[0]; 286 return $assoc; 345 $assoc = $this->getAssociation($server_url, $handle); 346 if ($assoc === null) { 459 list($assoc_filename, $assoc) = $pair; 460 if ($assoc->getExpiresIn() == 0) { 608 list($assoc_filename, $assoc) = $pair; [all …]
|
H A D | Consumer.php | 947 if ($assoc) { 1445 if (($assoc === null) || 1446 ($assoc->getExpiresIn() <= 0)) { 1450 if ($assoc !== null) { 1456 return $assoc; 1508 $assoc = $this->_requestAssociation( 1516 $why = $assoc; 1539 return $assoc; 1545 return $assoc; 1757 $this->assoc = $assoc; [all …]
|
H A D | Association.php | 457 list($assoc, $session) = $pair; 461 ($assoc == 'HMAC-SHA256')) { 463 } else if ($assoc != 'HMAC-SHA256') {
|
/plugin/openid/Auth/OpenID/ |
H A D | SQLStore.php | 429 $assoc = $this->_get_assoc($server_url, $handle); 432 if ($assoc) { 433 $assocs[] = $assoc; 451 $assoc->secret = $this->blobDecode($assoc->secret); 453 if ($assoc->getExpiresIn() == 0) { 456 $associations[] = [$assoc->issued, $assoc]; 463 foreach ($associations as $key => $assoc) { 464 $issued[$key] = $assoc[0]; 465 $assocs[$key] = $assoc[1]; 472 list(, $assoc) = $associations[0]; [all …]
|
H A D | MDB2Store.php | 341 $assoc = $this->connection->getRow($sql, $types, $params); 343 if (!$assoc || @PEAR::isError($assoc)) { 346 $association = new Auth_OpenID_Association($assoc['handle'], 348 $assoc['secret']), 349 $assoc['issued'], 350 $assoc['lifetime'], 351 $assoc['assoc_type']); 352 fclose($assoc['secret']);
|
H A D | Server.php | 464 if (!$assoc) { 734 * @param Auth_OpenID_Association $assoc 737 function answer($assoc) argument 1468 if (!$assoc) { 1494 if (!$assoc || ($assoc->getExpiresIn() <= 0)) { 1498 $assoc_type = ($assoc ? $assoc->assoc_type : 'HMAC-SHA1'); 1500 if ($assoc && ($assoc->getExpiresIn() <= 0)) { 1541 return $assoc; 1568 if (($assoc !== null) && ($assoc->getExpiresIn() <= 0)) { 1571 $assoc = null; [all …]
|
H A D | FileStore.php | 293 foreach ($matching_associations as $key => $assoc) { 294 $issued[$key] = $assoc[0]; 295 $assocs[$key] = $assoc[1]; 303 list(, $assoc) = $matching_associations[0]; 304 return $assoc; 376 $assoc = $this->getAssociation($server_url, $handle); 377 if ($assoc === null) { 495 list($assoc_filename, $assoc) = $pair; 497 if ($assoc->getExpiresIn() == 0) { 660 list($assoc_filename, $assoc) = $pair; [all …]
|
H A D | Consumer.php | 1000 if ($assoc) { 1537 if (($assoc === null) || 1538 ($assoc->getExpiresIn() <= 0)) { 1542 if ($assoc !== null) { 1547 return $assoc; 1628 return $assoc; 1634 return $assoc; 1851 public $assoc; variable in Auth_OpenID_AuthRequest 1876 function __construct($endpoint, $assoc) argument 1878 $this->assoc = $assoc; [all …]
|
H A D | Association.php | 473 list($assoc, $session) = $pair; 477 ($assoc == 'HMAC-SHA256')) { 479 } else if ($assoc != 'HMAC-SHA256') {
|
/plugin/stopforumspam/ |
H A D | ResponseChecker.php | 64 protected function ResponseCategoryFromAssoc($assoc) argument 69 if (isset($assoc['frequency'])) { 70 $frequency = $assoc['frequency']; 72 if (isset($assoc['confidence'])) { 73 $confidence = $assoc['confidence'];
|
/plugin/diagramsnet/lib/js/diagramly/sidebar/ |
H A D | Sidebar-Sysml.js | 164 assoc.geometry.x=1; 165 assoc.edge = true; 166 bg.insert(assoc); 171 assoc.insert(sourceLabel); 258 assoc.geometry.x=1; 259 assoc.edge = true; 260 bg.insert(assoc); 299 assoc.edge = true; 300 bg.insert(assoc); 589 assoc.edge = true; [all …]
|
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/ |
H A D | functions.php | 292 * @param bool $assoc When true, returned objects will be converted 301 function json_decode($json, $assoc = false, $depth = 512, $options = 0) argument 303 $data = \json_decode($json, $assoc, $depth, $options);
|
/plugin/bez/mdl/ |
H A D | Entity.php | 40 $assoc = array(); 48 $assoc[$col] = $this->$col; 50 return $assoc;
|
/plugin/datatemplate/syntax/inc/ |
H A D | cache.php | 56 $pageids = $sqlite->res2arr($res, $assoc = false); 75 $rows = $sqlite->res2arr($res, $assoc = false);
|
/plugin/sqlite/ |
H A D | helper.php | 251 public function res2arr($res, $assoc = true) 257 $mode = $assoc ? PDO::FETCH_ASSOC : PDO::FETCH_NUM; 248 res2arr($res, $assoc = true) global() argument
|
/plugin/sqlite/_test/ |
H A D | HelperTest.php | 168 $this->assertEquals($resultassoc, $SqliteHelper->res2arr($this->res, $assoc = true)); 184 $this->assertEquals($resultnum, $SqliteHelper->res2arr($this->res, $assoc = false));
|
/plugin/quickstats/db/ |
H A D | dataBaseStructure.txt | 100 /* assoc array intermixed md5(page_id) and ip keys */
|
/plugin/publistf/bib2tpl/ |
H A D | bibtex_converter.php | 87 * @var assoc. array
|
/plugin/publistx/bib2tpl/ |
H A D | bibtex_converter.php | 84 * @var assoc. array
|
/plugin/dirtylittlehelper/mermaid/editor/docs/ |
H A D | 12.12.js.map | 1 …',\n 'aset-short',\n 'assert',\n 'assoc',\n 'assoc!',\n 'assoc-…
|
/plugin/codemirror/dist/modes/ |
H A D | clojure.min.js.map | 1 …\"aset-int\", \"aset-long\", \"aset-short\", \"assert\", \"assoc\", \"assoc!\",\n \"assoc-in\…
|
/plugin/sequencediagram/bower_components/lodash/dist/ |
H A D | lodash.fp.min.js | 11 always:"constant",any:"some",anyPass:"overSome",apply:"spread",assoc:"set",assocPath:"set",compleme…
|