| /plugin/findologicxmlexport/vendor/symfony/polyfill-ctype/ |
| D | Ctype.php | 28 * @param string|int $text 32 public static function ctype_alnum($text) argument 34 $text = self::convert_int_to_char_for_ctype($text); 36 return \is_string($text) && '' !== $text && !preg_match('/[^A-Za-z0-9]/', $text); 44 * @param string|int $text 48 public static function ctype_alpha($text) argument 50 $text = self::convert_int_to_char_for_ctype($text); 52 return \is_string($text) && '' !== $text && !preg_match('/[^A-Za-z]/', $text); 60 * @param string|int $text 64 public static function ctype_cntrl($text) argument [all …]
|
| D | bootstrap.php | 15 function ctype_alnum($text) { return p\Ctype::ctype_alnum($text); } argument 16 function ctype_alpha($text) { return p\Ctype::ctype_alpha($text); } argument 17 function ctype_cntrl($text) { return p\Ctype::ctype_cntrl($text); } argument 18 function ctype_digit($text) { return p\Ctype::ctype_digit($text); } argument 19 function ctype_graph($text) { return p\Ctype::ctype_graph($text); } argument 20 function ctype_lower($text) { return p\Ctype::ctype_lower($text); } argument 21 function ctype_print($text) { return p\Ctype::ctype_print($text); } argument 22 function ctype_punct($text) { return p\Ctype::ctype_punct($text); } argument 23 function ctype_space($text) { return p\Ctype::ctype_space($text); } argument 24 function ctype_upper($text) { return p\Ctype::ctype_upper($text); } argument [all …]
|
| /plugin/mdpage/vendor/symfony/polyfill-ctype/ |
| D | Ctype.php | 28 * @param string|int $text 32 public static function ctype_alnum($text) argument 34 $text = self::convert_int_to_char_for_ctype($text); 36 return \is_string($text) && '' !== $text && !preg_match('/[^A-Za-z0-9]/', $text); 44 * @param string|int $text 48 public static function ctype_alpha($text) argument 50 $text = self::convert_int_to_char_for_ctype($text); 52 return \is_string($text) && '' !== $text && !preg_match('/[^A-Za-z]/', $text); 60 * @param string|int $text 64 public static function ctype_cntrl($text) argument [all …]
|
| /plugin/combo/vendor/symfony/polyfill-ctype/ |
| H A D | Ctype.php | 28 * @param mixed $text 32 public static function ctype_alnum($text) argument 34 $text = self::convert_int_to_char_for_ctype($text, __FUNCTION__); 36 return \is_string($text) && '' !== $text && !preg_match('/[^A-Za-z0-9]/', $text); 44 * @param mixed $text 48 public static function ctype_alpha($text) argument 50 $text = self::convert_int_to_char_for_ctype($text, __FUNCTION__); 52 return \is_string($text) && '' !== $text && !preg_match('/[^A-Za-z]/', $text); 60 * @param mixed $text 64 public static function ctype_cntrl($text) argument [all …]
|
| H A D | bootstrap.php | 19 function ctype_alnum($text) { return p\Ctype::ctype_alnum($text); } argument 22 function ctype_alpha($text) { return p\Ctype::ctype_alpha($text); } argument 25 function ctype_cntrl($text) { return p\Ctype::ctype_cntrl($text); } argument 28 function ctype_digit($text) { return p\Ctype::ctype_digit($text); } argument 31 function ctype_graph($text) { return p\Ctype::ctype_graph($text); } argument 34 function ctype_lower($text) { return p\Ctype::ctype_lower($text); } argument 37 function ctype_print($text) { return p\Ctype::ctype_print($text); } argument 40 function ctype_punct($text) { return p\Ctype::ctype_punct($text); } argument 43 function ctype_space($text) { return p\Ctype::ctype_space($text); } argument 46 function ctype_upper($text) { return p\Ctype::ctype_upper($text); } argument [all …]
|
| H A D | bootstrap80.php | 15 function ctype_alnum(mixed $text): bool { return p\Ctype::ctype_alnum($text); } argument 18 function ctype_alpha(mixed $text): bool { return p\Ctype::ctype_alpha($text); } argument 21 function ctype_cntrl(mixed $text): bool { return p\Ctype::ctype_cntrl($text); } argument 24 function ctype_digit(mixed $text): bool { return p\Ctype::ctype_digit($text); } argument 27 function ctype_graph(mixed $text): bool { return p\Ctype::ctype_graph($text); } argument 30 function ctype_lower(mixed $text): bool { return p\Ctype::ctype_lower($text); } argument 33 function ctype_print(mixed $text): bool { return p\Ctype::ctype_print($text); } argument 36 function ctype_punct(mixed $text): bool { return p\Ctype::ctype_punct($text); } argument 39 function ctype_space(mixed $text): bool { return p\Ctype::ctype_space($text); } argument 42 function ctype_upper(mixed $text): bool { return p\Ctype::ctype_upper($text); } argument [all …]
|
| /plugin/markdownextra/lib/meltdown/js/lib/ |
| D | js-markdown-extra.js | 59 function Markdown(text) { argument 71 return parser.transform(text); 199 Markdown_Parser.prototype.__wrapSTXETX__ = function(text) { argument 200 if(text.charAt(0) != '\x02') { text = '\x02' + text; } 201 if(text.charAt(text.length - 1) != '\x03') { text = text + '\x03'; } 202 return text; 209 Markdown_Parser.prototype.__unwrapSTXETX__ = function(text) { argument 210 if(text.charAt(0) == '\x02') { text = text.substr(1); } 211 if(text.charAt(text.length - 1) == '\x03') { text = text.substr(0, text.length - 1); } 212 return text; [all …]
|
| /plugin/markdownextra/ |
| D | markdown.php | 59 function Markdown($text) { argument 71 return $parser->transform($text); 113 function mdwp_MarkdownPost($text) { argument 124 return $parser->transform($text); 150 function mdwp_add_p($text) { argument 151 if (!preg_match('{^$|^<(p|ul|ol|dl|pre|blockquote)>}i', $text)) { 152 $text = '<p>'.$text.'</p>'; 153 $text = preg_replace('{\n{2,}}', "</p>\n\n<p>", $text); 155 return $text; 160 function mdwp_hide_tags($text) { argument [all …]
|
| /plugin/deeplautotranslate/ |
| D | action.php | 657 private function deepl_translate($text, $target_lang, $org_ns): string { argument 662 $text = $this->patch_links($text, $target_lang, $org_ns); 664 $text = $this->insert_ignore_tags($text); 671 'text' => $text 745 private function patch_links($text, $target_lang, $ns): string { argument 759 …preg_match_all('/\[\[([\s\S]*?)(#[\s\S]*?)?((\|)([\s\S]*?))?]]/', $text, $matches, PREG_SET_ORDER); 799 $text = str_replace($match[0], $new_link, $text); 807 …preg_match_all('/\{\{(([\s\S]*?)(\?[\s\S]*?)?)(\|([\s\S]*?))?}}/', $text, $matches, PREG_SET_ORDER… 854 $text = str_replace($match[0], $new_link, $text); 858 return $text; [all …]
|
| /plugin/textile2/ |
| D | classTextile.php | 277 function TextileThis($text, $lite='', $encode='', $noimage='', $strict='', $rel='') argument 286 $text = $this->incomingEntities($text); 287 $text = str_replace("x%x%", "&", $text); 288 return $text; 292 $text = $this->cleanWhiteSpace($text); 295 $text = $this->getRefs($text); 298 $text = $this->block($text); 301 $text = $this->retrieve($text); 304 $text = str_replace("<br />", "<br />\n", $text); 306 return $text; [all …]
|
| /plugin/onlineordering/ |
| D | send_form.php | 22 * @param text Text to display. 25 function prepareHTML( $text ) argument 27 $text = str_replace('\n', '<br/>', $text ); 29 $text = str_replace('�', 'ä', $text ); 30 $text = str_replace('�', 'Ä', $text ); 31 $text = str_replace('�', 'ö', $text ); 32 $text = str_replace('�', 'Ö', $text ); 33 $text = str_replace('�', 'ß', $text ); 34 $text = str_replace('�', 'ü', $text ); 35 $text = str_replace('�', 'Ü', $text ); [all …]
|
| /plugin/bootswrapper/exe/help/ |
| D | text.txt | 6 …* The //lowercase// version ''<nowiki><text></nowiki>'' create a __inline__ element (eg. ''<nowiki… 17 Easily realign text to components with text alignment attribute. 19 <TEXT align="left">Left aligned text.</TEXT> 21 <TEXT align="center">Center aligned text.</TEXT> 23 <TEXT align="right">Right aligned text.</TEXT> 25 <TEXT align="justify">Justified text.</TEXT> 27 <TEXT align="nowrap">No wrap text.</TEXT> 32 <TEXT align="left">Left aligned text.</TEXT> 33 <TEXT align="center">Center aligned text.</TEXT> 34 <TEXT align="right">Right aligned text.</TEXT> [all …]
|
| /plugin/readability/ |
| D | calc.php | 12 $text = $_REQUEST['html'].'. '; variable 13 $text = preg_replace('!</(li|h[1-5])>!i','. ',$text); //make sentences from those tags variable 14 $text = strip_tags($text); variable 16 $gf = gunning_fog_score($text); 17 $fs = calculate_flesch($text); 18 $fg = calculate_flesch_grade($text); 19 $rt = calculate_readingtime($text); 62 function calculate_readingtime($text){ argument 63 $word = str_word_count($text); 74 function gunning_fog_score($text) { argument [all …]
|
| /plugin/bpmnio/data/ |
| D | dmn_close.text | 28 <text>season</text> 33 <text>guestCount</text> 39 <text>"Winter"</text> 42 <text><= 8</text> 45 <text>"Spareribs"</text> 50 <text>"Winter"</text> 53 <text>> 8</text> 56 <text>"Pasta"</text> 61 <text>"Summer"</text> 64 <text>> 10</text> [all …]
|
| /plugin/davcal/db/ |
| H A D | update0001.sql | 4 uri text, 7 etag text, 9 componenttype text, 12 uid text 17 principaluri text, 18 displayname text, 19 uri text, 21 description text, 23 calendarcolor text, 24 timezone text, [all …]
|
| /plugin/mdpage/vendor/cebe/markdown/ |
| D | Parser.php | 45 * @param string $text the text to parse 48 public function parse($text) argument 52 if (ltrim($text) === '') { 56 $text = str_replace(["\r\n", "\n\r", "\r"], "\n", $text); 58 $this->prepareMarkers($text); 60 $absy = $this->parseBlocks(explode("\n", $text)); 70 * @param string $text the text to parse 73 public function parseParagraph($text) argument 77 if (ltrim($text) === '') { 81 $text = str_replace(["\r\n", "\n\r", "\r"], "\n", $text); [all …]
|
| /plugin/meta/_test/ |
| D | rendering.test.php | 16 $text = "My page content"; 17 saveWikiText('description_test', $text, 'Created'); 18 …self::assertEquals($text, p_get_metadata('description_test', 'description abstract', METADATA_REND… 20 $text .= DOKU_LF . '~~META:description abstract=My abstract~~'; 22 saveWikiText('description_test', $text, 'Added meta'); 26 $text .= DOKU_LF . '~~META:description foobar=bar~~'; 27 saveWikiText('description_test', $text, 'Updated meta'); 33 $text = "My page content"; 35 saveWikiText($id, $text, 'Created'); 36 … self::assertEquals($text, p_get_metadata($id, 'description abstract', METADATA_RENDER_UNLIMITED)); [all …]
|
| /plugin/wordimport/docx/ |
| D | Paragraph.php | 53 foreach ($this->texts as $text) { 55 if ($text->isWhiteSpace()) { 56 $result .= $text->__toString(); 60 $formatting = $text->getFormatting(); 81 $result .= $text->__toString(); 121 * @param string $text 123 public function alignmentPadding($text) argument 127 $text = "$text "; 130 $text = " $text"; 133 $text = " $text "; [all …]
|
| /plugin/zwidoku/ |
| H A D | Html2Text.php | 40 protected $text; variable in Html2Text\\Html2Text 295 return $this->text; 354 $text = trim($this->html); 356 $this->converter($text); 359 $text .= "\n\nLinks:\n------\n"; 361 $text .= '[' . ($i + 1) . '] ' . $url . "\n"; 365 $this->text = $text; 370 protected function converter(&$text) argument 372 $this->convertBlockquotes($text); 373 $this->convertPre($text); [all …]
|
| /plugin/mdpage/vendor/cebe/markdown/inline/ |
| D | EmphStrongTrait.php | 20 protected function parseEmphStrong($text) argument 22 $marker = $text[0]; 24 if (!isset($text[1])) { 25 return [['text', $text[0]], 1]; 28 if ($marker == $text[1]) { // strong 33 if (strpos($text, $marker . $marker, 2) === false) { 34 return [['text', $text[0] . $text[1]], 2]; 37 …if ($marker === '*' && preg_match('/^[*]{2}((?>\\\\[*]|[^*]|[*][^*]*[*])+?)[*]{2}/s', $text, $matc… 38 $marker === '_' && preg_match('/^__((?>\\\\_|[^_]|_[^_]*_)+?)__/us', $text, $matches)) { 53 if (strpos($text, $marker, 1) === false) { [all …]
|
| /plugin/webdavclient/db/ |
| D | update0001.sql | 3 uri text, 4 displayname text, 6 description text, 7 username text, 8 password text, 9 dwuser text, 10 type text, 13 ctag text, 21 uri text, 24 etag text, [all …]
|
| /plugin/ckgdoku/action/ |
| D | edit.php | 192 list($PRE,$text,$SUF) = rawWikiSlices($RANGE,$ID,$REV); 194 $text = rawWiki($ID,$REV); 198 $text = pageTemplate($ID); 200 if(!$text && $this->page_from_template) $text = $this->page_from_template; 203 else $text = $draft_text; 205 $text = preg_replace_callback( 213 ),$text); 216 …$text=preg_replace("#(?<=http://)(.*?)(?=lib/plugins/ckgdoku/ckeditor/plugins/smiley/images)#s", $… 219 $text = preg_replace_callback('/\[\[\w+>.*?\]\]/ms', 223 ), $text); [all …]
|
| /plugin/htmlabstract/ |
| D | syntax.php | 193 function formatDescription($text, $params) argument 195 $cut = $this->cutTextToLength($text, $params['maxlen']); 196 …$text = preg_replace('/<([a-z]+[^>]*) id="([^>]+)"/', '<$1 id="${2}_htmlabstract_'.microtime(true)… 201 if (FALSE !== ($pos = strrpos($text, "</p>")) && $pos >= $min) 202 $text = substr($text, 0, 4 + $pos); 205 $text .= '... '; 206 $text = $this->closeBrokenTags($text); 207 return $text; 213 function cutTextToLength(&$text, $maxlen) argument 218 $textlen = strlen($text); [all …]
|
| /plugin/parserfunctions/ |
| D | action.php | 38 $text = $event->data; 39 $text = $this->processParserFunctions($text); 40 $event->data = $text; 43 private function processParserFunctions($text) argument 50 …$text = preg_replace_callback('/%%.*?%%|<(nowiki|code|file|html)[^>]*>.*?<\/\1>/si', function ($ma… 54 }, $text); 58 while (($match = $this->extractBalancedFunction($text)) !== false) { 60 $text = str_replace($match, $resolved, $text); 66 $text = str_replace($key, $original, $text); 69 return $text; [all …]
|
| /plugin/yourip/ |
| D | syntax.php | 63 $text=false; 65 $text="\n<div id='yourip' class='$type'>"; 67 $text .= $this->getLang('you_use_v6'); // "You've got IPv6" 68 $text .= "<br/> "; 69 $text .= sprintf( $this->getLang('ipv6_from'), $ip); // "IPv6 connection from $ip" 73 $text .= $this->getLang('you_use_v4'); // "You use old fashioned IPv4" 74 $text .= "<br/>"; 75 $text .= sprintf( $this->getLang('ipv4_from'), $ip); // "IPv4 connection from $ip" 77 $text .="</div>\n"; 78 $renderer->doc .= $text; [all …]
|