Home
last modified time | relevance | path

Searched refs:assoc (Results 1 – 25 of 30) sorted by last modified time

12

/plugin/sqlite/_test/
H A DHelperTest.php168 $this->assertEquals($resultassoc, $SqliteHelper->res2arr($this->res, $assoc = true));
184 $this->assertEquals($resultnum, $SqliteHelper->res2arr($this->res, $assoc = false));
/plugin/sqlite/
H A Dhelper.php251 public function res2arr($res, $assoc = true)
257 $mode = $assoc ? PDO::FETCH_ASSOC : PDO::FETCH_NUM;
248 res2arr($res, $assoc = true) global() argument
/plugin/bez/mdl/
H A DEntity.php40 $assoc = array();
48 $assoc[$col] = $this->$col;
50 return $assoc;
/plugin/openid/Auth/OpenID/
H A DAssociation.php473 list($assoc, $session) = $pair;
477 ($assoc == 'HMAC-SHA256')) {
479 } else if ($assoc != 'HMAC-SHA256') {
H A DConsumer.php1000 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 DMDB2Store.php341 $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 DFileStore.php293 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 DSQLStore.php429 $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 DServer.php464 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 …]
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md884 - Set `json_decode()` assoc parameter to true in `Elastica\Response` [#1005](https://github.com/ruflin/Elastica/pull/1005)
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/
H A Dfunctions.php292 * @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/quickstats/db/
H A DdataBaseStructure.txt100 /* assoc array intermixed md5(page_id) and ip keys */
/plugin/diagramsnet/lib/js/diagramly/sidebar/
H A DSidebar-Sysml.js164 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/dirtylittlehelper/mermaid/editor/docs/
H A D12.12.js.map1 …',\n 'aset-short',\n 'assert',\n 'assoc',\n 'assoc!',\n 'assoc-…
/plugin/publistf/bib2tpl/
H A Dbibtex_converter.php87 * @var assoc. array
/plugin/codemirror/dist/modes/
H A Didl.min.js.map1 … 'array_equal', 'array_indices',\n 'arrow', 'ascii_template', 'asin', 'assoc', 'atan',\n 'ax…
H A Dclojure.min.js.map1 …\"aset-int\", \"aset-long\", \"aset-short\", \"assert\", \"assoc\", \"assoc!\",\n \"assoc-in\…
H A Dscheme.min.js.map1 …letrec letrec-syntax map or syntax-rules abs acos angle append apply asin assoc assq assv atan boo…
/plugin/sequencediagram/bower_components/lodash/dist/
H A Dlodash.fp.min.js11 always:"constant",any:"some",anyPass:"overSome",apply:"spread",assoc:"set",assocPath:"set",compleme…
/plugin/datatemplate/syntax/inc/
H A Dcache.php56 $pageids = $sqlite->res2arr($res, $assoc = false);
75 $rows = $sqlite->res2arr($res, $assoc = false);
/plugin/stopforumspam/
H A DResponseChecker.php64 protected function ResponseCategoryFromAssoc($assoc) argument
69 if (isset($assoc['frequency'])) {
70 $frequency = $assoc['frequency'];
72 if (isset($assoc['confidence'])) {
73 $confidence = $assoc['confidence'];
/plugin/publistx/bib2tpl/
H A Dbibtex_converter.php84 * @var assoc. array
/plugin/fedauth/Auth/OpenID/
H A DAssociation.php457 list($assoc, $session) = $pair;
461 ($assoc == 'HMAC-SHA256')) {
463 } else if ($assoc != 'HMAC-SHA256') {
H A DFileStore.php275 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 DConsumer.php947 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 …]

12