Home
last modified time | relevance | path

Searched refs:data (Results 2951 – 2975 of 5080) sorted by relevance

1...<<111112113114115116117118119120>>...204

/plugin/openid/Auth/OpenID/
H A DAssociation.php189 $data = [
198 assert(array_keys($data) == $this->assoc_keys);
200 return Auth_OpenID_KVForm::fromArray($data);
345 $data = $message->toPostArgs();
348 $field, Auth_OpenID::arrayGet($data,
/plugin/odt/ODT/elements/
H A DODTElementTable.php293 public function determinePositionInContainer (array &$data, ODTStateElement $current) { argument
294 $data ['column'] = $this->getTableCurrentColumn();
307 $data ['cell'] = $cell;
311 public function getMaxWidthOfNestedContainer (ODTInternalParams $params, array $data) { argument
317 $column = $data ['column'];
318 $cell = $data ['cell'];
/plugin/odt2dw/
H A Daction.php35 if($this->getConf('showimportbutton') && $event->data['view'] == 'main') {
42 $event->data['items']['import_odt'] =
60 if ( strpos( $this->getConf('formDisplayRule'), $event->data) === false ) return;
62 if ( page_exists( $ID ) && $event->data != "odt2dw" ) return;
81 if ( $event->data == 'odt2dw' ) $event->preventDefault();
90 if ( $event->data != 'odt2dw' ) return;
116 $event->data = $this->getConf('parserPostDisplay');
/plugin/fblogin/lib/
H A Dbase_facebook.php997 $data = json_decode(self::base64UrlDecode($payload), true);
999 if (strtoupper($data['algorithm']) !== self::SIGNED_REQUEST_ALGORITHM) {
1013 return $data;
1022 protected function makeSignedRequest($data) { argument
1023 if (!is_array($data)) {
1025 'makeSignedRequest expects an array. Got: ' . print_r($data, true));
1027 $data['algorithm'] = self::SIGNED_REQUEST_ALGORITHM;
1028 $data['issued_at'] = time();
1029 $json = json_encode($data);
/plugin/datatables/
H A Daction.php108 $event->data['script'][] = [
117 $event->data['link'][] = [
/plugin/pagestat/syntax/
H A Dedit.php42 public function render($mode, Doku_Renderer $renderer, $data) { argument
46 list($state,$match,$count) = $data;
H A Deditpt.php43 public function render($mode, Doku_Renderer $renderer, $data) { argument
47 list($state,$match,$count) = $data;
/plugin/webdav/core/DAV/Collection/Media/
H A DDirectory.php67 public function createFile($name, $data = null) argument
79 $file->put($data);
/plugin/qrcode/syntax/
H A Dqrcode.php199 function render($mode, & $renderer, $data) argument
203 $renderer->doc .= $data;
/plugin/referrers/
H A Dcode.php36 $data = trim($datas[0]);
38 if (strcmp($data, "====== Referrers : $curdate ======") == 0) {
/plugin/since/
H A Dsince.php65 public function render($mode, &$renderer, $data) { argument
69 list($syntax, $attr, $content) = $data;
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/
H A DColonSpacingSniff.php100 $data = array($length);
101 $fix = $phpcsFile->addFixableError($error, $stackPtr, 'After', $data);
/plugin/fckg/syntax/
H A Dfont.php61 function render($mode, Doku_Renderer $renderer, $data) { argument
63 list($state, $match) = $data;
/plugin/google_cal/
H A Dsyntax.php61 function render($mode, Doku_Renderer $renderer, $data) { argument
62 list($style, $url, $alt, $w, $h) = $data;
/plugin/webcomponent/syntax/
H A Dheading.php150 * @param array $data - what the function handle() return'ed
153 function render($mode, Doku_Renderer $renderer, $data) argument
/plugin/aceeditor/
H A Daction.php82 $event->data['script'][] = array(
90 $event->data['script'][] = array(
/plugin/pixelyear/
H A Dsyntax.php43 public function render($mode, Doku_Renderer $renderer, $data) { argument
47 list($state,$match) = $data;
/plugin/authucenter/lib/uc_client/control/
H A Dfriend.php54 $data = $_ENV['friend']->get_list($uid, $page, $pagesize, $totalnum, $direction);
55 return $data;
/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/Extension/Renderer/Inline/
H A DImageRenderer.php44 $attrs = $node->data->get('attributes');
57 if (isset($node->data['title'])) {
58 $attrs['title'] = $node->data['title'];
/plugin/commonmark/vendor/league/commonmark/src/Extension/Footnote/Event/
H A DNumberFootnotesListener.php65 $document->data->append($existingReference->getDestination(), $newReference);
/plugin/archivegenerator/lang/en/
H A Dintro.txt2 This archive will not include old revisions of pages and media files, changelogs or cache data.
7 Besides the mentioned ommitted data, the archive will include all configuration, templates and inst…
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/OAuth2/Service/
H A DVimeo.php108 $data = json_decode($responseBody, true);
110 if (null === $data || !is_array($data)) {
112 } elseif (isset($data['error_description'])) {
114 'Error in retrieving token: "' . $data['error_description'] . '"'
116 } elseif (isset($data['error'])) {
118 'Error in retrieving token: "' . $data['error'] . '"'
123 $token->setAccessToken($data['access_token']);
125 if (isset($data['expires_in'])) {
126 $token->setLifeTime($data['expires_i
[all...]
/plugin/combo/syntax/
H A Diteratordata.php14 * to create the data
30 const MARKI_PAGE_TAG = "data";
161 * @param array $data - what the function handle() return'ed
167 function render($format, Doku_Renderer $renderer, $data) argument
171 * No render, the data is used by {@link syntax_plugin_combo_iterator::handle()}
/plugin/dw2pdf/vendor/mpdf/qrcode/
H A DREADME.md28 $data = $output->output($qrCode, 100, [255, 255, 255], [0, 0, 0]);
29 file_put_contents('filename.png', $data);
/plugin/dw2pdf/vendor/mpdf/qrcode/src/Output/
H A DPng.php17 * @return string Binary image data
57 $data = ob_get_contents();
62 return $data;

1...<<111112113114115116117118119120>>...204