Home
last modified time | relevance | path

Searched refs:matches (Results 1 – 25 of 1144) sorted by relevance

12345678910>>...46

/plugin/ckgedit/action/
H A Dedit.php307 return $matches[1] . $matches[2] . $matches[3];
342 … return "<" . $matches[1] . $matches[2] . $matches[3] . $matches[4] . $matches[5];
362 return $matches[1] . $matches[2] . trim($matches[3]) . $matches[4];
411 … $retstr = $matches[1] . ">\n/*" . $matches[2] . "*/\n" . $matches[3];
435 return $matches[1] . $matches[2] . "<br />";
448 return $matches[1] . $matches[2] . $matches[3];
475 return $matches[1] . $matches[2] . $matches[3] . $matches[4] . $matches[5];
1126 return $matches[1] . $quot . $matches[3];
1134 return $matches[1] . $quot . $matches[3];
1152 return $matches[1] .$matches[2] . $matches[3];
[all …]
H A Dsave.php101 if($matches[1]) $left .= $matches[1];
102 if($matches[4]) $right = $matches[4] . $right;
118 return $matches[1].$matches[2].$matches[3];
188 return '<code ' . $matches[1] .' ' . $matches[2] .'>';
262 return '{{' .$matches[1] . $rel . $matches[3] .'}}';
287 $matches[2]=preg_replace("/^\s+/ms","",$matches[2]);
289 return $matches[1]. $matches[2];
325 $matches[0] = str_replace("@!@",'\\',$matches[0]);
335 $matches[3] = preg_replace('/\n+/',"",$matches[3] );
337 return '|' . $matches[1] . $matches[2] . str_replace("\\ ","",$matches[3]);
[all …]
/plugin/davcard/vendor/sabre/vobject/lib/
H A DDateTimeParser.php46 …$date = new DateTime($matches[1] . '-' . $matches[2] . '-' . $matches[3] . ' ' . $matches[4] . ':'…
74 $date = new DateTime($matches[1] . '-' . $matches[2] . '-' . $matches[3], $tz);
111 $matches[$part] = isset($matches[$part])&&$matches[$part]?(int)$matches[$part]:0;
118 $days = $matches['day'];
119 if ($matches['week']) {
125 if ($matches['minute'] || $matches['second'] || $matches['hour']) {
128 if ($matches['hour'])
131 if ($matches['minute'])
134 if ($matches['second'])
161 if (isset($matches[$part]) && $matches[$part]) {
[all …]
/plugin/webdavclient/vendor/sabre/vobject/lib/
H A DDateTimeParser.php46 …$date = new DateTime($matches[1] . '-' . $matches[2] . '-' . $matches[3] . ' ' . $matches[4] . ':'…
74 $date = new DateTime($matches[1] . '-' . $matches[2] . '-' . $matches[3], $tz);
111 $matches[$part] = isset($matches[$part])&&$matches[$part]?(int)$matches[$part]:0;
118 $days = $matches['day'];
119 if ($matches['week']) {
125 if ($matches['minute'] || $matches['second'] || $matches['hour']) {
128 if ($matches['hour'])
131 if ($matches['minute'])
134 if ($matches['second'])
161 if (isset($matches[$part]) && $matches[$part]) {
[all …]
/plugin/davcal/vendor/sabre/vobject/lib/
H A DDateTimeParser.php46 …$date = new DateTime($matches[1] . '-' . $matches[2] . '-' . $matches[3] . ' ' . $matches[4] . ':'…
74 $date = new DateTime($matches[1] . '-' . $matches[2] . '-' . $matches[3], $tz);
111 $matches[$part] = isset($matches[$part])&&$matches[$part]?(int)$matches[$part]:0;
118 $days = $matches['day'];
119 if ($matches['week']) {
125 if ($matches['minute'] || $matches['second'] || $matches['hour']) {
128 if ($matches['hour'])
131 if ($matches['minute'])
134 if ($matches['second'])
161 if (isset($matches[$part]) && $matches[$part]) {
[all …]
/plugin/webdav/vendor/sabre/vobject/lib/
H A DDateTimeParser.php48 …$date = new DateTimeImmutable($matches[1].'-'.$matches[2].'-'.$matches[3].' '.$matches[4].':'.$mat…
78 $date = new DateTimeImmutable($matches[1].'-'.$matches[2].'-'.$matches[3], $tz);
120 … $matches[$part] = isset($matches[$part]) && $matches[$part] ? (int) $matches[$part] : 0;
126 $days = $matches['day'];
128 if ($matches['week']) {
136 if ($matches['minute'] || $matches['second'] || $matches['hour']) {
139 if ($matches['hour']) {
143 if ($matches['minute']) {
147 if ($matches['second']) {
176 if (isset($matches[$part]) && $matches[$part]) {
[all …]
/plugin/icalevents/vendor/sabre/vobject/lib/
H A DDateTimeParser.php48 …new DateTimeImmutable($matches[1] . '-' . $matches[2] . '-' . $matches[3] . ' ' . $matches[4] . ':…
79 $date = new DateTimeImmutable($matches[1] . '-' . $matches[2] . '-' . $matches[3], $tz);
123 … $matches[$part] = isset($matches[$part]) && $matches[$part] ? (int)$matches[$part] : 0;
129 $days = $matches['day'];
131 if ($matches['week']) {
139 if ($matches['minute'] || $matches['second'] || $matches['hour']) {
143 if ($matches['hour']) {
147 if ($matches['minute']) {
151 if ($matches['second']) {
182 if (isset($matches[$part]) && $matches[$part]) {
[all …]
/plugin/html2pdf/html2pdf/html2ps/
H A Dcss.parse.inc.php105 if (preg_match("/^(\S.*)\s*>\s*([^\s]+)$/", $raw_selector, $matches)) {
113 if (preg_match("/^(\S.*)\s+([^\s]+)$/", $raw_selector, $matches)) {
129 … array(SELECTOR_ATTR_VALUE, $matches[2], css_remove_value_quotes($matches[3]))));
135 … array(SELECTOR_ATTR_VALUE_WORD, $matches[2], css_remove_value_quotes($matches[3]))));
139 if (preg_match("/^([#\.\s\w_-]*):(\w+)$/", $raw_selector, $matches)) {
140 if ($matches[1] === "") { $matches[1] = "*"; };
142 switch($matches[2]) {
156 …n array(SELECTOR_SEQUENCE, array(parse_css_selector($matches[1]), array(SELECTOR_LANGUAGE, $matche…
159 if (preg_match("/^(\S+)(\.\S+)$/", $raw_selector, $matches)) {
160 …turn array(SELECTOR_SEQUENCE, array(parse_css_selector($matches[1]), parse_css_selector($matches[2…
[all …]
H A Dxhtml.utils.inc.php111 $result .= $matches[1];
116 $tag = $matches[5];
162 $tag = $matches[4];
218 $result .= $matches[1].$matches[2]." ".$matches[3]."=".$matches[4].$new_value.$matches[4];
219 $html = $matches[6];
250 $raw_attrs = isset($matches[2]) ? $matches[2] : "";
253 $raw_attrs = isset($matches[2]) ? $matches[2] : "";
317 $result .= $matches[1].fix_attrs_tag($matches[2]);
444 $match = $matches[$i];
464 $result .= $matches[1].$matches[2].strtolower($matches[3]).$matches[4];
[all …]
H A Dcss.colors.inc.php171 $r = min(255,max(0,$matches[1]));
172 $g = min(255,max(0,$matches[2]));
173 $b = min(255,max(0,$matches[3]));
179 $r = min(255,max(0,$matches[1]*255/100));
180 $g = min(255,max(0,$matches[2]*255/100));
181 $b = min(255,max(0,$matches[3]*255/100));
195 $arrr = unpack("C",pack("H2",$matches[1]));
196 $arrg = unpack("C",pack("H2",$matches[2]));
211 $arrr = unpack("C",pack("H2",$matches[1].$matches[1]));
212 $arrg = unpack("C",pack("H2",$matches[2].$matches[2]));
[all …]
H A Dcss.parse.properties.php14 if (preg_match('/^\s*:\s*(.*?)$/si', $string, $matches)) {
15 $string = $matches[1];
20 if (preg_match('/^\s*;\s*(.*)$/si', $string, $matches)) {
21 $string = $matches[1];
41 $name = strtolower(trim($matches[1]));
42 $rest = $matches[2];
63 $value .= $matches[1];
64 $string = $matches[2];
70 if (preg_match(sprintf('/^(%s)(\s*;.*)/si', $value_regexp), $string, $matches)) {
71 $value .= trim($matches[1]);
[all …]
/plugin/annotate/
H A Danno.php150 function($matches){
151 if($matches[1] == '/'){
153 if($matches[2] <= 3){
180 function($matches) {
183 $matches[1] = str_replace($replace, $replacements,$matches[1]);
184 $matches[1] = preg_replace("/\<tr\s+class=\"row\d\">/","",$matches[1]);
188 $matches[1] = str_replace('/span_h','/span',$matches[1]);
194 function($matches) {
196 $matches[0] = preg_replace('/\<div\s+class.*?li\">/',"",$matches[0]);
197 $matches[0] = str_replace('</div>','<br>',$matches[0]);
[all …]
/plugin/avtaskbox/
H A Dsyntax.php92 preg_match('/^Title:(.*?)$/isxm', $match, $matches);
93 … $title = (!empty($matches[1]) && strlen(trim($matches[1]))>0) ? trim($matches[1]) : '&nbsp;';
95 preg_match('/^Priority:(.*?)$/isxm', $match, $matches);
96 …$priority =(!empty($matches[1]) && strlen(trim($matches[1]))>0) ? 'Priority: '.trim($matches[1]) :…
98 preg_match('/^Estimate:(.*?)$/isxm', $match, $matches);
99 …$estimate = (!empty($matches[1]) && strlen(trim($matches[1]))>0) ? ' of '.trim($matches[1]) : '&nb…
101 preg_match('/^Assigned:(.*?)$/isxm', $match, $matches);
102 …$assigned = (!empty($matches[1]) && strlen(trim($matches[1]))>0) ? '('.trim($matches[1]).')' : '&n…
105 …$progress = (!empty($matches[1]) && strlen(trim($matches[1]))>0) ? intval(preg_replace('[^0-9]', '…
107 preg_match('/Description:(.*)/isx', $match, $matches);
[all …]
/plugin/iframeinterwiki/
H A Dsyntax.php53 $matches=array();
54 if(preg_match('/\[?(\d+(em|%|pt|px)?)\s*([,xX]\s*(\d+(em|%|pt|px)?))?\]?/',$param,$matches)){
55 if(array_key_exists(4, $matches) && $matches[4]){
57 $opts['width'] = $matches[1];
58 if(!$matches[2]) $opts['width'] .= 'px'; //default to pixel when no unit was set
59 $opts['height'] = $matches[4];
60 if(!$matches[5]) $opts['height'] .= 'px'; //default to pixel when no unit was set
61 }elseif(array_key_exists(2, $matches) && $matches[
[all...]
/plugin/findologicxmlexport/vendor/hoa/compiler/Llk/
H A DLlk.php279 switch ($matches[2]) {
300 if (empty($matches[1])) {
301 $matches[1] = 'default';
305 $tokens[$matches[1]] = [];
309 $tokens[$matches[1]]['skip'] = $matches[3];
314 $matches[3] .
318 if (empty($matches[1])) {
319 $matches[1] = 'default';
322 if (isset($matches[4]) && !empty($matches[4])) {
323 $matches[2] = $matches[2] . ':' . $matches[4];
[all …]
/plugin/ckgdoku/action/
H A Dsave.php179 function($matches){
225 return '{{' .$matches[1] . $rel . $matches[3] .'}}';
279 $matches[0] = preg_replace("/(\w+)\\\\\\\\(\w)/ms","$1@#@",$matches[0]);
280 $matches[0] = preg_replace("/\\\\(\w+)/ms","@!@$1",$matches[0]);
281 $matches[0] = preg_replace("/(\w+)\\\\/ms","@!@$1",$matches[0]);
282 $matches[0] = str_replace("\\", "",$matches[0]);
283 $matches[0] = str_replace("@!@",'\\',$matches[0]);
293 function($matches) {
294 $matches[3] = preg_replace('/\n+/',"",$matches[3] );
295 $matches[3] = preg_replace('/\s+$/',"",$matches[3] ) . '|';
[all …]
/plugin/markdownextra/
H A Dmarkdown.php395 $url = $matches[2] == '' ? $matches[3] : $matches[2];
542 $text = $matches[1];
794 $url = $matches[3] == '' ? $matches[4] : $matches[3];
898 $url = $matches[3] == '' ? $matches[4] : $matches[3];
946 if ($matches[2] == '-' && preg_match('{^-(?: |$)}', $matches[1]))
1336 $bq = $matches[1];
1889 $url = $matches[2] == '' ? $matches[3] : $matches[2];
2084 $matches))
2480 $url = $matches[3] == '' ? $matches[4] : $matches[3];
2590 $url = $matches[3] == '' ? $matches[4] : $matches[3];
[all …]
/plugin/nodisp/
H A Daction.php28 function($matches) {
31 if($acl < $matches[1]) {
34 return $matches[0];
40 function($matches) {
46 return $matches[0];
52 function($matches) {
58 return $matches[0];
64 function($matches) {
70 return $matches[0];
78 function($matches) {
[all …]
/plugin/interwikipaste/
H A Dscript.js67 const matches = idMatch.exec(href);
68 if (matches[1]) {
69 return normalizeId(matches[1]);
75 if (matches[1]) {
76 return normalizeId(matches[1]);
85 if (matches[1]) {
86 return normalizeId(matches[1]);
93 if (matches[1]) {
100 if (matches[1]) {
107 if (matches[1]) {
[all …]
/plugin/aichat/vendor/erusev/parsedown/
H A DParsedown.php423 if (preg_match('/^['.$Line['text'][0].']{3,}[ ]*([^`]+)?[ ]*$/', $Line['text'], $matches))
430 if (isset($matches[1]))
444 $language = substr($matches[1], 0, strcspn($matches[1], " \t\n\f\r"));
543 if (preg_match('/^('.$pattern.'[ ]+)(.*)/', $Line['text'], $matches))
556 $listStart = stristr($matches[0], '.', true);
568 $matches[2],
580 if ($Block['indent'] === $Line['indent'] and preg_match('/^'.$Block['pattern'].'(?:[ ]+(.*)|$)/', $Line['text'], $matches))
593 $text = isset($matches[1]) ? $matches[
[all...]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Runner/Filter/
H A DTest.php47 if (isset($matches[3]) && $matches[2] < $matches[3]) {
50 $matches[1]
53 $this->filterMin = $matches[2];
54 $this->filterMax = $matches[3];
58 $matches[1],
59 $matches[2]
65 elseif (preg_match('/^(.*?)@(.+)$/', $filter, $matches)) {
68 $matches[1],
69 $matches[2]
108 $accepted = @preg_match($this->filter, $name, $matches);
[all …]
/plugin/elasticsearch/vendor/nyholm/dsn/src/
H A DDsnParser.php37 if (1 === preg_match(self::FUNCTION_REGEX, $dsn, $matches)) {
38 $functionName = $matches[1];
39 $arguments = $matches[2];
40 parse_str($matches[3] ?? '', $parameters);
51 if (preg_match_all(self::ARGUMENTS_REGEX, $arguments, $matches)) {
52 $arguments = $matches[1];
66 if (1 === preg_match(self::FUNCTION_REGEX, $dsn, $matches)) {
67 if ('dsn' === $matches[1]) {
68 return self::parse($matches[2]);
116 if (!preg_match('#^(?:(?<alt>['.self::UNRESERVED.self::SUB_DELIMS.'%]+:[0-9]+(?:[/?].*)?)|(?<scheme>[a-zA-Z0-9\+-\.]+):(?://)?(?<dsn>.*))$#', $dsn, $matches)) {
[all...]
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dmodule.graphic.svg.php32 if (preg_match('#\<\?xml([^\>]+)\?\>#i', $SVGheader, $matches)) {
33 $info['svg']['xml']['raw'] = $matches;
35 if (preg_match('#\<\!DOCTYPE([^\>]+)\>#i', $SVGheader, $matches)) {
36 $info['svg']['doctype']['raw'] = $matches;
38 if (preg_match('#\<svg([^\>]+)\>#i', $SVGheader, $matches)) {
39 $info['svg']['svg']['raw'] = $matches;
49 while (preg_match('/ "([^"]+)"/', $info['svg'][$section_to_fix]['raw'][1], $matches)) {
50 $section_data[] = $matches[1];
54 $section_data[] = $matches[0];
86 if (preg_match('#//W3C//DTD SVG ([0-9\.]+)//#i', $key, $matches)) {
[all …]
/plugin/icalevents/vendor/sabre/uri/lib/
H A Dfunctions.php190 function($matches) {
191 return rawurlencode($matches[0]);
281 $matches = [];
283 return [$matches[1], $matches[2]];
311 function($matches) {
329 $result['scheme'] = $matches[1];
363 if ($matches['host']) $result['host'] = $matches['host'];
364 if ($matches['port']) $result['port'] = (int)$matches['port'];
365 if (isset($matches['path'])) $result['path'] = $matches['path'];
366 if ($matches['user']) $result['user'] = $matches['user'];
[all …]
/plugin/webdav/vendor/sabre/uri/lib/
H A Dfunctions.php190 function($matches) {
191 return rawurlencode($matches[0]);
281 $matches = [];
283 return [$matches[1], $matches[2]];
311 function($matches) {
329 $result['scheme'] = $matches[1];
363 if ($matches['host']) $result['host'] = $matches['host'];
364 if ($matches['port']) $result['port'] = (int)$matches['port'];
365 if (isset($matches['path'])) $result['path'] = $matches['path'];
366 if ($matches['user']) $result['user'] = $matches['user'];
[all …]

12345678910>>...46