Home
last modified time | relevance | path

Searched refs:pattern (Results 126 – 150 of 693) sorted by relevance

12345678910>>...28

/plugin/hyphenation/phpHyphenation/
H A DphpHyphenation.class.php144 foreach ($patterns as $pattern) {
145 $new_patterns[preg_replace('/[0-9]/', '', $pattern)] = $pattern;
227 $pattern = $this->patterns[mb_substr($text_word, $position, $win)];
229 $pattern_length = mb_strlen($pattern);
232 $char = $pattern[$i];
/plugin/structpublish/db/
H A Dupdate0001.sql2 pattern TEXT NOT NULL, field
5 PRIMARY KEY (pattern, user, status)
/plugin/slideshare/slideshare/
H A Dsyntax.php21 var $pattern; variable in syntax_plugin_slideshare
25 $this->pattern = '/\{\{(\s?)slide>(|link):([^} |]+)\|?(.*?)(\s?)\}\}/';
44 $pm = preg_match_all($this->pattern,$match,$result);
/plugin/aichat/vendor/vanderlee/php-sentence/tests/
H A DMultibyteTest.php14 public function testSplit($expected, $pattern, $subject, $limit = -1, $flags = 0) argument
16 $this->assertSame($expected, Multibyte::split($pattern, $subject, $limit, $flags));
/plugin/authplaincas/
H A Dauth.php369 foreach ($patterns as $role => $pattern) {
372 if (preg_match($pattern, $attribute)) {
539 $pattern = '/^('.join('|',$deleted).'):/';
541 if (io_deleteFromFile($this->casuserfile,$pattern,true)) {
672 foreach ($this->_pattern as $item => $pattern) {
674 if (!preg_match($pattern, $user)) return 0;
676 if (!count(preg_grep($pattern, $info['grps']))) return 0;
678 if (!preg_match($pattern, $info[$item])) return 0;
686 foreach ($filter as $item => $pattern) {
688 $this->_pattern[$item] = '/'.str_replace('/','\/',$pattern).'/i'; // allow regex characters
/plugin/stats/
H A Daction.php42 $pattern = '/(<p>(.*?)<table class="wikistat (.*?)<\/p>)/ism';
44 $event->data = preg_replace($pattern, $replace,$event->data);
/plugin/html2pdf/html2pdf/
H A Daction.php65 $pattern = '/<a.*?detail.php\/(.*?)\?.*?width="(.*?)" height="(.*?)".*?<\/a>/';
66 while ( preg_match($pattern,$html,$matches ) )
74 $html = preg_replace($pattern,$replace,$html);
/plugin/structpublish/
H A Dadmin.php31 * Based on struct pattern assignments
47 if (!blank($assignment['pattern']) && !blank($assignment['status'])) {
50 $assignment['pattern'],
55 msg('failed to remove pattern', -1);
58 if ($assignment['pattern'][0] == '/') {
59 if (@preg_match($assignment['pattern'], null) === false) {
63 $assignment['pattern'],
68 msg('failed to add pattern', -1);
73 $assignment['pattern'],
78 msg('failed to add pattern',
[all...]
/plugin/bureaucracy/
H A Dsyntax.php465 $pattern = '/<noreplace>(.*?)<\/noreplace>/is';
467 preg_match_all($pattern, $input, $matches);
486 $pattern = $this->patterns[$label];
489 $pattern,
494 $input = preg_replace($pattern, $value, $input);
516 $pattern = '/@' . preg_quote($name) . '\((.*?)\)@/';
518 $input = preg_replace_callback($pattern, function ($matches) use ($callback) {
525 $pattern = '/<noreplace>.*?<\/noreplace>/is';
527 $input = preg_replace($pattern, $nr, $input, 1);
/plugin/linebreak/
H A Daction.php53 $pattern = '/(?!< )(\n+|$)/';
61 preg_match_all($pattern, $event->data, $linebreaks, PREG_OFFSET_CAPTURE);
71 $event->data = $marker.preg_replace($pattern,' $1',$event->data);
/plugin/inlinejs/syntax/
H A Dembedcss.php43 $this->pattern[1] = '<CSS>(?=.*?</CSS>)';
44 $this->pattern[4] = '</CSS>';
/plugin/authsmartcard/auth/
H A Dindex.php21 $pattern = '/-----BEGIN CERTIFICATE-----(.*)-----END CERTIFICATE-----/msU'; variable
22 if (1 === preg_match($pattern, $cert, $matches)) {
/plugin/odt/ODT/
H A DXMLUtil.php30 $pattern = '/'.$element.'\s[^>]*>/';
31 if (preg_match ($pattern, $xmlCode, $matches) === 1) {
390 $pattern = '/\s'.$attribute.'="[^"]*"/';
391 if (preg_match ($pattern, $xmlCode, $matches) === 1) {
408 $pattern = '/\s[-:_.a-zA-Z0-9]+="[^"]*"/';
409 if (preg_match_all ($pattern, $xmlCode, $matches, PREG_SET_ORDER) > 0) {
/plugin/medialist/
H A Daction.php35 $pattern = '#<!-- MEDIALIST ([^\r\n]+?) -->#';
38 $event->data[1] = preg_replace_callback( $pattern,
/plugin/youtube/
H A Dsyntax.php17 var $pattern; variable in syntax_plugin_youtube
20 $this->pattern = '/\{\{(\s?)youtube>(small|large|link):([^} |]+)\|?(.*?)(\s?)\}\}/';
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ManufacturerCenter/
H A DAttributes.php92 public $pattern; variable in Google\\Service\\ManufacturerCenter\\Attributes
427 public function setPattern($pattern) argument
429 $this->pattern = $pattern;
436 return $this->pattern;
/plugin/siteexport/inc/
H A Dfilewriter.php151 $pattern = $this->functions->requestParametersToCacheHash($requestData);
152 return $this->hasValidCacheFileForPattern($pattern, $depends);
155 private function hasValidCacheFileForPattern($pattern, $depends = array()) argument
157 $this->functions->debug->message("HASH-Pattern for CacheFile: ", $pattern, 2);
159 $cacheFile = $this->functions->getCacheFileNameForPattern($pattern);
/plugin/publist/
H A DTODO10 * In function ConnectTo (syntax.php), make special pattern not to collide
17 * Stronger special pattern parsing in function "handle" (syntax.php)
21 * Completely change special pattern format to something like:
/plugin/publistf/
H A DTODO10 * In function ConnectTo (syntax.php), make special pattern not to collide
17 * Stronger special pattern parsing in function "handle" (syntax.php)
21 * Completely change special pattern format to something like:
/plugin/publistx/
H A DTODO10 * In function ConnectTo (syntax.php), make special pattern not to collide
17 * Stronger special pattern parsing in function "handle" (syntax.php)
21 * Completely change special pattern format to something like:
/plugin/jquery-syntax/jquery-syntax/
H A Djquery.syntax.brush.kai.js5 …x.lib.webLink);brush.push({pattern:/\(([^\s\(\)]+)/gi,matches:Syntax.extractMatches({klass:'functi…
H A Djquery.syntax.brush.bash.js5 …ush.push({pattern:/^([\w@:~ ]*?[\$|\#])\s+(.*?)$/gm,matches:Syntax.extractMatches({klass:'prompt'}…
/plugin/mdpage/vendor/cebe/markdown/inline/
H A DUrlLinkTrait.php25 $pattern = <<<REGEXP
33 if (!in_array('parseLink', $this->context) && preg_match($pattern, $markdown, $matches)) {
/plugin/sql/
H A Dsyntax.php17 $pattern = '/'.$prop ."='([^']*)')/";
18 if (preg_match($pattern, $xml, $matches)) {
21 $pattern = '/'.$prop .'="([^"]*)"/';
22 if (preg_match($pattern, $xml, $matches)) {
/plugin/shibbolethauth/files/
H A Dshibboleth.class.php514 $pattern = '/^('.join('|',$deleted).'):/';
516 if (io_deleteFromFile(AUTH_USERFILE,$pattern,true)) {
620 foreach ($this->_pattern as $item => $pattern) {
622 if (!preg_match($pattern, $user)) return 0;
624 if (!count(preg_grep($pattern, $info['grps']))) return 0;
626 if (!preg_match($pattern, $info[$item])) return 0;
634 foreach ($filter as $item => $pattern) {
636 $this->_pattern[$item] = '/'.str_replace('/','\/',$pattern).'/'; // allow regex characters

12345678910>>...28