Home
last modified time | relevance | path

Searched refs:encoded (Results 1 – 25 of 121) sorted by relevance

12345

/plugin/odt/ODT/
H A DODTImage.php29 $encoded = '';
66 $encoded .= '<draw:text-box>';
74 $encoded .= '<draw:frame draw:style-name="'.$style.'" draw:name="'.$z.'"
80 $encoded .= '</draw:frame>';
86 return $encoded;
88 $params->content .= $encoded;
194 $encoded = '';
248 $encoded .= '<draw:text-box>';
262 $encoded .= '</draw:frame>';
268 return $encoded;
[all …]
H A DODTDocument.php1928 $encoded = '';
1934 return $encoded;
1940 $encoded = '';
1945 return $encoded;
1951 $encoded = '';
1963 $encoded .= '>';
1966 return $encoded;
1972 $encoded = '';
1977 return $encoded;
1983 $encoded = '';
[all …]
/plugin/odt/ODT/elements/
H A DODTElementTableHeaderCell.php44 $encoded = '<table:table-cell office:value-type="'.$this->getValueType().'"';
45 $encoded .= ' table:style-name="'.$this->getStyleName().'"';
47 $encoded .= ' table:number-columns-spanned="'.$colspan.'"';
49 $encoded .= ' table:number-columns-spanned="<MaxColsPlaceholder'.$count.'>"';
52 $encoded .= ' table:number-rows-spanned="'.$rowspan.'"';
54 $encoded .= '>';
55 return $encoded;
H A DODTElementTableCell.php49 $encoded = '<table:table-cell office:value-type="'.$this->getValueType().'"';
50 $encoded .= ' table:style-name="'.$this->getStyleName().'"';
52 $encoded .= ' table:number-columns-spanned="'.$colspan.'"';
55 $encoded .= ' table:number-rows-spanned="'.$rowspan.'"';
57 $encoded .= '>';
58 return $encoded;
H A DODTElementList.php47 $encoded = '<text:list text:style-name="'.$this->getStyleName().'"';
49 $encoded .= ' text:continue-numbering="true" ';
52 $encoded .= ' text:continue-numbering="false" ';
55 $encoded .= '>';
56 return $encoded;
H A DODTElementTextBox.php39 $encoded = '<draw:text-box '.$this->getAttributes().'>';
40 return $encoded;
H A DODTElementFrame.php56 $encoded = '<draw:frame draw:style-name="'.$this->getStyleName().'" ';
57 $encoded .= $this->getAttributes().'>';
61 return $encoded;
H A DODTElementTable.php63 $encoded = '<table:table>';
65 $encoded .= '<table:table table:style-name="'.$style_name.'">';
78 $encoded .= '<ColumnsPlaceholder'.$count.'>';
83 return $encoded;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Transcoder/
H A DProgress.php23 public $encoded; variable in Google\\Service\\Transcoder\\Progress
35 public function setEncoded($encoded) argument
37 $this->encoded = $encoded;
41 return $this->encoded;
/plugin/findologicxmlexport/vendor/findologic/libflexport/src/FINDOLOGIC/Export/Data/
H A DAttribute.php73 $encoded = '';
76 $encoded .= sprintf('%s=%s&', urlencode($this->key), urlencode($value));
79 $encoded = rtrim($encoded, '&');
81 return $encoded;
/plugin/pureldap/vendor/freedsx/sasl/src/FreeDSx/Sasl/Encoder/
H A DDigestMD5Encoder.php218 $encoded = null;
227 $encoded = '"' . str_replace(['\\', '"'], ['\\\\', '\"'], $value) . '"';
232 $encoded = '"' . implode(',', (array) $value) . '"';
234 $encoded = (string) $value;
238 $encoded = 'true';
243 $encoded = (string) $value;
246 $encoded = str_pad(dechex($value), 8, '0', STR_PAD_LEFT);
250 $encoded = $this->encodeLHexValue($value, 32);
260 return $encoded;
338 throw new SaslEncodingException(sprintf('Expected the encoded he
[all...]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/
H A DElement.php41 * @param string $encoded
45 public function __construct($encoded) argument
47 $this->element = $encoded;
/plugin/plantumlparser/syntax/
H A DPlantUmlDiagram.php8 private $encoded;
13 $this->encoded = $this->encodep($markup);
32 return $this->basePath."svg/".$this->encoded;
36 return $this->basePath."png/".$this->encoded;
40 return $this->basePath."txt/".$this->encoded;
5 private $encoded; global() variable in PlantUmlDiagram
/plugin/textinsert/
H A Dadmin.php96 $encoded = $_REQUEST['encoded'];
97 $encoded = array_map('urldecode',$encoded);
98 foreach($encoded AS $k=>$val) {
131 $encoded = urlencode($subst);
132 if($subst != $encoded) {
133 ptln("<input type = 'hidden' name='encoded[$macro]' value='$encoded'>");
/plugin/chat/
H A Dtw-sack.js71 encoded = encodeURIComponent(this.argumentSeparator);
72 regexp = new RegExp(this.argumentSeparator + "|" + encoded);
103 encoded = this.encVar(key, this.vars[key][0], true);
105 this.vars[encoded[0]] = Array(encoded[1], true);
106 key = encoded[0];
/plugin/fckg/fckeditor/editor/dialog/
H A Dtw-sack.js71 encoded = encodeURIComponent(this.argumentSeparator);
72 regexp = new RegExp(this.argumentSeparator + "|" + encoded);
103 encoded = this.encVar(key, this.vars[key][0], true);
105 this.vars[encoded[0]] = Array(encoded[1], true);
106 key = encoded[0];
/plugin/fckg/fckeditor/
H A Dtw-sack.js71 encoded = encodeURIComponent(this.argumentSeparator);
72 regexp = new RegExp(this.argumentSeparator + "|" + encoded);
103 encoded = this.encVar(key, this.vars[key][0], true);
105 this.vars[encoded[0]] = Array(encoded[1], true);
106 key = encoded[0];
/plugin/combo/vendor/php-webdriver/webdriver/lib/
H A DWebDriverKeys.php117 $encoded = [];
123 $encoded[] = (string) $key;
127 return $encoded;
130 return implode('', $encoded);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/File/
H A DASN1.php144 private static $encoded; variable in phpseclib3\\File\\ASN1
205 * @param Element|string $encoded
209 public static function decodeBER($encoded) argument
211 if ($encoded instanceof Element) {
212 $encoded = $encoded->element;
215 self::$encoded = $encoded;
217 $decoded = [self::decode_ber($encoded)];
230 * @param string $encoded
240 if (!isset($encoded[$encoded_pos])) {
243 $type = ord($encoded[$encoded_pos++]);
[all …]
/plugin/authloginapi/
H A Daction.php73 $encoded = rtrim(strtr(base64_encode(json_encode($request)), '+/', '-_'), '=');
74 $form->addHidden('r', $encoded);
76 $signature = hash('sha256', $encoded.$this->token);
/plugin/swiftmail/Swift/Message/
H A DHeaders.php503 …$encoded = Swift_Message_Encoder::instance()->rfc2047Encode($att_value, $this->charset, $this->lan…
504 $lines = explode($this->LE, $encoded);
510 $encoded = implode($this->LE, $lines);
513 if ((strlen($encoded) + $used_len + strlen($attribute) + 4) < 74)
515 if (strpos($encoded, "'") !== false) $attribute .= "*";
516 $append = "; " . $attribute . "=" . $encoded;
531 if ($add_asterisk || strpos($encoded, "'") !== false)
546 if (strpos($encoded, "'") !== false) $attribute .= "*";
547 $append = $this->LE . " " . $attribute . "=" . $encoded;
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/
H A DLdapQueue.php146 $encoded = $this->encoder->encode($message->toAsn1());
147 $buffer .= $this->messageWrapper !== null ? $this->messageWrapper->wrap($encoded) : $encoded;
/plugin/aichat/vendor/mehrab-wj/tiktoken-php/src/
H A DEncoder.php95 $encoded = $this->encoder[$newBpeToken] ?? $newBpeToken;
97 $bpeTokens[] = $encoded;
99 $bpeTokens[$newBpeToken] = $encoded;
/plugin/advanced/lang/en/config/
H A Dinterwiki.txt20 …ible in linking. If no placeholder is given the [[phpfn>rawurlencode|URL-encoded]] wikiname will b…
23 | {URL} | URL-encoded wikiname (the part which is appended to the URL in interwiki.local.con…
/plugin/stlviewer/
H A DREADME.md8 Options are URL encoded a=1&b=2 etc

12345