Home
last modified time | relevance | path

Searched refs:preg_match (Results 126 – 150 of 1399) sorted by path

12345678910>>...56

/plugin/autotweet/
H A DOAuth.php748 while (preg_match($pattern, $header, $matches, PREG_OFFSET_CAPTURE, $offset) > 0) {
752 if (preg_match('/^oauth_/', $header_name) || !$only_allow_oauth_parameters) {
/plugin/avatar/
H A Dsyntax.php38 $ralign = (bool)preg_match('/^ /', $user);
39 $lalign = (bool)preg_match('/ $/', $user);
45 if (preg_match('/^s/', $param)) $size = 20;
46 else if (preg_match('/^m/', $param)) $size = 40;
47 else if (preg_match('/^l/', $param)) $size = 80;
48 else if (preg_match('/^xl/', $param)) $size = 120;
/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/backup/
H A Dadmin.php395 return !preg_match('/\.(dist|example|bak)/', $path);
/plugin/badbehaviour/
H A Daction.php66 preg_match('/(bb2_addLoadEvent\(function\(\) \{)(.*)(\}\);)/s',$bb2_javascript,$match);
/plugin/badbehaviour/bad-behavior/
H A Dblacklist.inc.php117 if (preg_match($spambot, $ua)) {
H A Dcommon_tests.inc.php91 if (!preg_match('/\bTE\b/', $package['headers_mixed']['Connection'])) {
98 …if (preg_match('/\bKeep-Alive\b/i', $package['headers_mixed']['Connection']) && preg_match('/\bClo…
102 if (preg_match('/\bclose,\s?close\b/i', $package['headers_mixed']['Connection'])) {
106 if (preg_match('/\bkeep-alive,\s?keep-alive\b/i', $package['headers_mixed']['Connection'])) {
H A Dfunctions.inc.php63 if (preg_match('/HTTP_(.+)/', $h, $hp))
H A Dmsie.inc.php19 …pos($package['headers_mixed']['User-Agent'], "IEMobile") === FALSE && @preg_match('/\bTE\b/i', $pa…
/plugin/barcodes/lib/
H A DColor.php33 if (preg_match('/^#?([0-9a-f]{6})/i', $color, $matches)) {
/plugin/barcodes/
H A Dsyntax.php65 …$attributes->size = preg_match('/^([0-9]+)(px)?$/', $barcode->attributes()['size'], $matches) ? in…
67 …$attributes->padding = preg_match('/^([0-9]+)(px)?$/', $barcode->attributes()['padding'], $matches…
/plugin/barcodes/vendor/jucksearm/php-barcode/lib/
H A DBarcode1D.php976 if (preg_match('/([0-9]{2})/', $chrnum) > 0) {
2028 if (!preg_match('/^[fadtFADT]{65}$/', $code) == 1) {
H A DBarcodeFactory.php288 preg_match("/\.png$/", $this->file, $output);
367 preg_match("/\.svg$/", $this->file, $output);
H A DDatamatrixFactory.php265 preg_match("/\.png$/", $this->file, $output);
329 preg_match("/\.svg$/", $this->file, $output);
H A DPDF417Factory.php269 preg_match("/\.png$/", $this->file, $output);
333 preg_match("/\.svg$/", $this->file, $output);
H A DQRcodeFactory.php317 preg_match("/\.png$/", $this->file, $output);
388 preg_match("/\.svg$/", $this->file, $output);
/plugin/batchedit/
H A Dengine.php1171 $matched = preg_match($positiveFilter, $pageId) == 1;
1175 $matched = preg_match($negativeFilter, $pageId) == 0;
H A Dinterface.php594 if (preg_match("/^(\r?\n)/", $value, $match) == 1) {
H A Drequest.php222 if (preg_match('/^([^\w\\\\]|_).+?\1[imsxADSUXJu]*$/s', $regexp) != 1) {
H A Dserver.php61 if (!isset($_REQUEST['session']) || preg_match('/^[0-9a-f]+$/', $_REQUEST['session']) != 1) {
/plugin/bbcode/
H A Dcolor.php177 … if (preg_match('/".+?"/',$match)) $match = substr($match, 1, -1); // addition #1: unquote
231 if (preg_match($pattern, $c)) return $c;
H A Dimage.php38 if ( preg_match('#^(https?|ftp)#i',$url) ) {
H A Dlink.php28 if (preg_match('/".+?"/',$match)) $match = substr($match, 1, -1); // addition #1: unquote
39 if ( preg_match('#^([a-z0-9\-\.+]+?)://#i',$url) ) {
43 } elseif ( preg_match('!^#.+!',$url) ) {
H A Dsize.php33 … if (preg_match('/".+?"/',$match)) $match = substr($match, 1, -1); // addition #1: unquote
34 …if (preg_match('/^[0-6]$/',$match)) $match = self::_relsz(intval($match) ); // addition #2: relati…
35 else if (preg_match('/^\d+$/',$match)) $match .= 'px';
/plugin/bbcodeextensions/syntax/
H A Dq.php20 if (preg_match('/^cite=".+?"/', $arr[0])) {

12345678910>>...56