Home
last modified time | relevance | path

Searched refs:preg_match (Results 51 – 75 of 1399) sorted by relevance

12345678910>>...56

/plugin/latexit/classes/
H A DBibHandler.php68 preg_match('#([usergop]*)id =([ \d]*)#', $zotero_config, $match);
72 preg_match('#key =(.*)$#m', $zotero_config, $match);
75 preg_match('#cachePage =(.*)$#m', $zotero_config, $match);
94 preg_match($regex, $rep, $match);
110 preg_match('#^[@].*\{(.*),$#m', $bib_item, $match);
/plugin/calendoku/
H A Daction.php75 if (!$inparse && (preg_match('/^(DTSTAMP:)/', $line, $match)
76 || preg_match('/^(LAST-MODIFIED:)/', $line, $match))) {
82 …if (!$inparse && preg_match('/^([[:alnum:]-]*?):@@([0-9]{4})-([0-9]{2})-([0-9]{2}) ([0-9-]{1,2}):(…
96 if (!$inparse && preg_match('/^([[:alnum:]-]*?):@@(.*)@@$/', $line, $match)) {
102 if (!$inparse && preg_match('/^([[:alnum:]-]*?):@@(.*)$/', $line, $match)) {
109 if ($inparse && preg_match('/^(.*)@@$/', $line, $match)) {
/plugin/avtaskbox/
H A Dsyntax.php92 preg_match('/^Title:(.*?)$/isxm', $match, $matches);
95 preg_match('/^Priority:(.*?)$/isxm', $match, $matches);
98 preg_match('/^Estimate:(.*?)$/isxm', $match, $matches);
101 preg_match('/^Assigned:(.*?)$/isxm', $match, $matches);
104 preg_match('/^Progress:(.*?)$/isxm', $match, $matches);
107 preg_match('/Description:(.*)/isx', $match, $matches);
/plugin/farm/
H A Dsoapserver.php80 if(preg_match('`^(name|pwd)\s*=\s*([^#]+)(#.*)?$`i', trim($f), $m)) $app[$m[1]] = trim($m[2]);
81 if(preg_match('`^allowed\s*=\s*([^#]+)(#.*)?$`i', trim($f), $m)) {
84 while(preg_match('`^([^(,]+)(\(([^)]+)\))?(\s*,\s*(.*))?$`', $list, $m)) {
96 …if(preg_match('`^\[[^]]+\]$`', $o[1])) $o[1] = array_map('trim', explode(',', substr($o[1], 1, -1)…
97 elseif(preg_match('`^[0-9]+$`', $o[1])) $o[1] = (int)$o[1];
98 elseif(preg_match('`^[0-9]+\.[0-9]+$`', $o[1])) $o[1] = (float)$o[1];
99 elseif(preg_match('`^(true|false)$`i', $o[1])) $o[1] = (strtolower($o[1]) == 'true');
100 elseif(preg_match('`^null$`i', $o[1])) $o[1] = null;
/plugin/bookmarkfile/
H A Dsyntax.php63 preg_match('/ file="(.*?)"/', $match, $matches);
66 preg_match('/ separators="(.*?)"/', $match, $matches);
69 preg_match('/ folder="(.*?)"/', $match, $matches);
214 if (preg_match('/\<H1\>(.*?)\<\/H1\>/', $sLine, $matches) == 1) {
219 } else if (preg_match('/\<DT\>\<H3.*?\>(.*?)\<\/H3\>/', $sLine, $matches) == 1) {
223 … } else if (preg_match('/\<DT\>\<A.*?HREF="(.*?)".*?\>(.*?)\<\/A\>/', $sLine, $matches) == 1) {
229 } else if (preg_match('/\<DL>/', $sLine, $matches) == 1) {
232 } else if (preg_match('/\<\/DL>/', $sLine, $matches) == 1) {
/plugin/html2pdf/html2pdf/html2ps/
H A Dxhtml.entities.inc.php22 while (preg_match("/&#x([[:xdigit:]]{2,4});/i", $html, $matches)) {
58 while (preg_match("#<(\s*[^!/a-zA-Z])#",$html)) {
62 while (preg_match("#(<[^>]*?)<#si",$html)) {
72 while (preg_match("#(>[^<]*?)>#si",$html)) {
H A Dautofix.url.php23 $no_graphic_found = preg_match('/[\x00-\x1F\x7F\x80-\xFF]/', $path);
24 $unsafe_found = preg_match('/[ <>\"#{}\|\^~\[\]`]/', $path);
25 $unsafe_percent_found = preg_match('/%[^\dA-F]|%\d[^\dA-F]/i', $path);
26 $reserved_found = preg_match('/;\?:@=&/', $path);
/plugin/lists/
H A Dsyntax.php207 if (preg_match('|\n*((\s*)(.))|', $aMatch, $hits)) {
214 if (preg_match('|^\s*\x3C$|', $aMatch, $hits)) {
217 if (preg_match('|(.*?)\s+\x3C$|s', $aMatch, $hits)) {
222 if (preg_match('|(.*[^\x5C])\x3C$|s', $aMatch, $hits)) {
278 if (preg_match('|\s*<p>\s*$|i', $aRenderer->doc, $hits)) {
294 if (preg_match('|</li>\s*$|', $aRenderer->doc)) {
299 } else if (preg_match('|\s*<li[^>]*>\s*<p>\s*$|',
374 if (preg_match('|\s*<li[^>]*>\s*<p>\s*$|',
379 } else if (preg_match('|\s*<p>\s*$|',
/plugin/davcard/vendor/sabre/vobject/lib/
H A DDateTimeParser.php37 …$result = preg_match('/^([0-9]{4})([0-1][0-9])([0-3][0-9])T([0-2][0-9])([0-5][0-9])([0-5][0-9])([Z…
64 $result = preg_match('/^([0-9]{4})([0-1][0-9])([0-3][0-9])$/',$date,$matches);
91 …$result = preg_match('/^(?P<plusminus>\+|-)?P((?P<week>\d+)W)?((?P<day>\d+)D)?(T((?P<hour>\d+)H)?(…
273 if (!preg_match($regex, $date, $matches)) {
298 if (!preg_match($regex, $date, $matches)) {
387 if (!preg_match($regex, $date, $matches)) {
403 if (!preg_match($regex, $date, $matches)) {
/plugin/webdavclient/vendor/sabre/vobject/lib/
H A DDateTimeParser.php37 …$result = preg_match('/^([0-9]{4})([0-1][0-9])([0-3][0-9])T([0-2][0-9])([0-5][0-9])([0-5][0-9])([Z…
64 $result = preg_match('/^([0-9]{4})([0-1][0-9])([0-3][0-9])$/',$date,$matches);
91 …$result = preg_match('/^(?P<plusminus>\+|-)?P((?P<week>\d+)W)?((?P<day>\d+)D)?(T((?P<hour>\d+)H)?(…
273 if (!preg_match($regex, $date, $matches)) {
298 if (!preg_match($regex, $date, $matches)) {
387 if (!preg_match($regex, $date, $matches)) {
403 if (!preg_match($regex, $date, $matches)) {
/plugin/davcal/vendor/sabre/vobject/lib/
H A DDateTimeParser.php37 …$result = preg_match('/^([0-9]{4})([0-1][0-9])([0-3][0-9])T([0-2][0-9])([0-5][0-9])([0-5][0-9])([Z…
64 $result = preg_match('/^([0-9]{4})([0-1][0-9])([0-3][0-9])$/',$date,$matches);
91 …$result = preg_match('/^(?P<plusminus>\+|-)?P((?P<week>\d+)W)?((?P<day>\d+)D)?(T((?P<hour>\d+)H)?(…
273 if (!preg_match($regex, $date, $matches)) {
298 if (!preg_match($regex, $date, $matches)) {
387 if (!preg_match($regex, $date, $matches)) {
403 if (!preg_match($regex, $date, $matches)) {
/plugin/findologicxmlexport/vendor/sebastian/diff/src/
H A DParser.php37 if (\preg_match('(^---\\s+(?P<file>\\S+))', $lines[$i], $fromMatch) &&
38 \preg_match('(^\\+\\+\\+\\s+(?P<file>\\S+))', $lines[$i + 1], $toMatch)) {
50 if (\preg_match('/^(?:diff --git |index [\da-f\.]+|[+-]{3} [ab])/', $lines[$i])) {
77 …if (\preg_match('/^@@\s+-(?P<start>\d+)(?:,\s*(?P<startrange>\d+))?\s+\+(?P<end>\d+)(?:,\s*(?P<end…
91 if (\preg_match('/^(?P<type>[+ -])?(?P<line>.*)/', $line, $match)) {
/plugin/amazon/
H A Dsyntax.php73 if(preg_match('/(\d+)x(\d+)/i',$more,$match)){
77 if(preg_match('/=(\d+)/',$more,$match)){
80 if(preg_match('/noprice/i',$more,$match)){
82 }elseif(preg_match('/(show)?price/i',$more,$match)){
85 if(preg_match('/nopurchased/i',$more,$match)){
87 }elseif(preg_match('/(show)?purchased/i',$more,$match)){
90 if(preg_match('/sortprice/i',$more,$match)){
92 }elseif(preg_match('/sortpriority/i',$more,$match)){
94 }elseif(preg_match('/sortadded/i',$more,$match)){
105 if(!preg_match('/^(us|uk|jp|de|fr|ca)$/',$ctry)){
/plugin/mdpage/vendor/cebe/markdown/inline/
H A DEmphStrongTrait.php37 …if ($marker === '*' && preg_match('/^[*]{2}((?>\\\\[*]|[^*]|[*][^*]*[*])+?)[*]{2}/s', $text, $matc…
38 $marker === '_' && preg_match('/^__((?>\\\\_|[^_]|_[^_]*_)+?)__/us', $text, $matches)) {
57 …if ($marker === '*' && preg_match('/^[*]((?>\\\\[*]|[^*]|[*][*][^*]+?[*][*])+?)[*](?![*][^*])/s', …
58 …$marker === '_' && preg_match('/^_((?>\\\\_|[^_]|__[^_]*__)+?)_(?!_[^_])\b/us', $text, $matches)) {
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dmodule.misc.pdf.php32 if (preg_match('#^%PDF-([0-9\\.]+)$#', rtrim($this->fgets()), $matches)) {
43 if (preg_match('#[\r\n]startxref[ \r\n]+([0-9]+)[ \r\n]+#', $this->fread(40), $matches)) {
72 if (preg_match('#^'.$objectNumber.' ([0-9]+) obj#', $line, $matches)) {
85 …if (preg_match('#^<<[\r\n\s]*(/Type|/Pages|/Parent [0-9]+ [0-9]+ [A-Z]|/Count [0-9]+|/Kids *\\[[0-…
86 if (preg_match('#/Count ([0-9]+)#', $objectData, $matches)) {
130 if (preg_match('#^([0-9]+) ([0-9]+) ([nf])$#', $line, $matches)) {
/plugin/phpipam/
H A Dsyntax.php286 } elseif (preg_match("/^(t2d)[=:%#@]['\"]?(\d+)['\"]?$/i",
1294 if (preg_match('/\bsubnet\b/', $_conf))
2228 } elseif (preg_match('/blank/i',
2231 } elseif (preg_match('/netapp|fas\d/i',
2234 } elseif (preg_match('/^sh(elf)?\s/i',
2237 } elseif (preg_match('/cisco|catalyst|nexus/i',
2240 } elseif (preg_match('/brocade|mds/i',
2243 } elseif (preg_match('/ucs/i',
2246 } elseif (preg_match('/ibm/i',
2249 } elseif (preg_match('/h ?p/i',
[all …]
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DCssManager.php74 if ($this->mpdf->CSSselectMedia && !preg_match('/(' . trim($this->mpdf->CSSselectMedia) . '|all)/i', $m[1][$i])) {
82 if ($this->mpdf->CSSselectMedia && !preg_match('/(' . trim($this->mpdf->CSSselectMedia) . '|all)/i', $m[1][$i])) {
182 if (!preg_match('/^data:image/i', $embedded)) { // mPDF 5.5.13
205 if (!preg_match('/^data:image/i', $embedded)) { // mPDF 5.5.13
218 if (preg_match('/@media/', $CSSstr)) {
222 if ($this->mpdf->CSSselectMedia && !preg_match('/(' . trim($this->mpdf->CSSselectMedia) . '|all)/i', $m[1][$i])) {
310 if (preg_match('/NTH-CHILD\((\s*(([\-+]?\d*)N(\s*[\-+]\s*\d+)?|[\-+]?\d+|ODD|EVEN)\s*)\)/', $tg, $m)) {
337 } elseif ($level === 2 && preg_match('/^[:](.*)$/', $t2, $m)) {
344 } elseif ($level === 3 && preg_match('/^[:](.*)$/', $t3, $m)) {
367 if (preg_match('/
[all...]
/plugin/linkback/exe/
H A Dpingback.php65 if (!preg_match("#^([a-z0-9\-\.+]+?)://.*#i", $sourceUri))
67 if (!preg_match("#^([a-z0-9\-\.+]+?)://.*#i", $targetUri))
170 if (!preg_match($regex, $page['body'], $match) && !preg_match($regex2, $page['body'], $match)) {
177 if (!preg_match($regex, $page['body'], $match) && !preg_match($regex2, $page['body'], $match))
187 if (!preg_match($regex, $page['body'], $match))
/plugin/findologicxmlexport/vendor/sebastian/environment/src/
H A DConsole.php52 if (preg_match('/^(\d+)x\d+ \(\d+x(\d+)\)$/', trim(getenv('ANSICON')), $matches)) {
74 if (preg_match('/--------+\r?\n.+?(\d+)\r?\n.+?(\d+)\r?\n/', $info, $matches)) {
87 …if (function_exists('shell_exec') && preg_match('#\d+ (\d+)#', shell_exec('stty size'), $match) ==…
93 …if (function_exists('shell_exec') && preg_match('#columns = (\d+);#', shell_exec('stty'), $match) …
/plugin/freechat/phpfreechat/lib/ctype/
H A Dctype.php6 return preg_match('/^[a-z]+$/i', $string);
13 return preg_match('/^[0-9a-f]+$/i', $string);
20 return preg_match('/^[\s]$/', $string);
/plugin/preservefilenames/
H A Dcommon.php66 if (!preg_match('/[\x00-\x1F\x7F-\xFF"*:<>?|\/\\\\]/', $filename)) {
69 } elseif (preg_match('/(?:Gecko\/|Opera\/| Opera )/', $ua)) {
76 && preg_match('/Version\/[4-9]/', $ua)
77 && !preg_match('/Mac OS X 10_[1-4]_/', $ua)
/plugin/autotooltip/
H A Dsyntax.php64 preg_match('/<autott\s*([^>]+?)\s*>/', $match, $classes);
65 preg_match('/<autott[^>]*>\s*([\s\S]+)\s*<\/autott>/', $match, $inner);
90 preg_match('/<content>([\s\S]+)<\/content>/', $inner, $content);
91 preg_match('/<tip>([\s\S]+)<\/tip>/', $inner, $tip);
92 preg_match('/<title>([\s\S]+)<\/title>/', $inner, $title);
/plugin/findologicxmlexport/vendor/twig/extensions/lib/Twig/Extensions/
H A DSimpleTokenParser.php109 if (preg_match('/\s+/A', $str, $match, null, $cursor)) {
111 } elseif (preg_match('/<(\w+)(?:\:(\w+))?>/A', $str, $match, null, $cursor)) {
118 } elseif (preg_match('/\w+/A', $str, $match, null, $cursor)) {
121 } elseif (preg_match('/,/A', $str, $match, null, $cursor)) {
124 } elseif (preg_match('/\[/A', $str, $match, null, $cursor)) {
127 } elseif (true !== $main && preg_match('/\]/A', $str, $match, null, $cursor)) {
/plugin/dokugource/
H A Daction.php42 if(preg_match('`~~gourcecolor(<|:|>)#?([0-9a-z]{3}([0-9a-z]{3})?)~~`i', $event->data[0][1], $m)) {
72 if(!preg_match('`^[a-z0-9]{8,64}$`i', $_GET['dokugource_key'])) die();
90 if(preg_match('`^'.$key.'(\s+(.*))?$`', $l, $m)) {
130 if(is_file($p.'/'.$i)) if(preg_match('`\.changes$`', $i)) {
133 if(preg_match('`^\s*([0-9]+)\s+([^\s]+)\s+([a-z]{1,3})\s+([^\s]+)\s+([^\s]+)`i', $l, $m)) {
135 if(preg_match('`(C|cc|sc)`i', $m[3])) {
137 }elseif(preg_match('`(D|dc|hc)`i', $m[3])) {
/plugin/meta/
H A Dsyntax.php128 if (!preg_match('/\d{4}\-\d{2}\-\d{2}/', $date)) {
176 if (!preg_match('/^\d{4}\-\d{2}\-\d{2}$/', $date)) {
177 if (preg_match('/^\d{4}\-\d{2}$/', $date)) {
180 } elseif (preg_match('/^\d{4}$/', $date)) {
192 if (!preg_match('/^\d{2}:\d{2}:\d{2}$/', $time)) {
193 if (preg_match('/^\d{2}:\d{2}$/', $time)) {
195 } elseif (preg_match('/^\d{2}$/', $time)) {

12345678910>>...56