Home
last modified time | relevance | path

Searched refs:pattern (Results 301 – 325 of 693) sorted by relevance

1...<<11121314151617181920>>...28

/plugin/webcomponent/syntax/
H A Dblockquote.php84 $pattern = webcomponent::getLookAheadPattern($this->getPluginComponent());
85 …$this->Lexer->addEntryPattern($pattern, $mode, 'plugin_' . webcomponent::PLUGIN_NAME . '_' . $this…
/plugin/actickets/
H A Dscript.js6 pattern: /\/projects\/(\d+)\/tickets\/(\d+)/, property in actickets
18 matches = ticket.href.match(actickets.pattern);
/plugin/directorylist/syntax/
H A Ddirectorylist.php184 foreach ($patternArray as $pattern) {
187 if ( fnmatch($pattern, $name) )
/plugin/publish/
H A Dsyntax.php26 function pattern() { function in syntax_plugin_publish
43 $this->Lexer->addSpecialPattern($this->pattern(),$mode,'plugin_publish');
/plugin/combo/syntax/
H A Dfragment.php105 $pattern = XmlTagProcessing::getContainerTagPattern($tag);
106 $this->Lexer->addEntryPattern($pattern, $mode, PluginUtility::getModeFromTag($this->getPluginComponent()));
125 * The handle function goal is to parse the matched syntax through the pattern function
H A Dcode.php93 $pattern = XmlTagProcessing::getContainerTagPattern(self::CODE_TAG);
94 $this->Lexer->addEntryPattern($pattern, $mode, PluginUtility::getModeFromTag($this->getPluginComponent()));
112 * The handle function goal is to parse the matched syntax through the pattern function
H A Dcell.php110 * Create a pattern that will called this plugin
120 $pattern = XmlTagProcessing::getContainerTagPattern($tag);
121 $this->Lexer->addEntryPattern($pattern, $mode, PluginUtility::getModeFromTag($this->getPluginComponent()));
138 * The handle function goal is to parse the matched syntax through the pattern function
H A Dtoggle.php75 * Create a pattern that will called this plugin
83 $pattern = XmlTagProcessing::getContainerTagPattern(self::getTag());
84 $this->Lexer->addEntryPattern($pattern, $mode, 'plugin_' . PluginUtility::PLUGIN_BASE_NAME . '_' . $this->getPluginComponent());
H A Dtooltip.php113 $pattern = XmlTagProcessing::getContainerTagPattern(self::TAG);
114 $this->Lexer->addEntryPattern($pattern, $mode, PluginUtility::getModeFromTag($this->getPluginComponent()));
127 * The handle function goal is to parse the matched syntax through the pattern function
H A Dmenubar.php25 * The name of the class must follow a pattern (don't change it)
120 * Create a pattern that will called this plugin
129 $pattern = XmlTagProcessing::getContainerTagPattern($tag);
130 $this->Lexer->addEntryPattern($pattern, $mode, PluginUtility::getModeFromTag($this->getPluginComponent()));
146 * The handle function goal is to parse the matched syntax through the pattern function
/plugin/acknowledge/db/
H A Dupdate0003.sql15 pattern TEXT NOT NULL PRIMARY KEY , field
/plugin/codehighlight/cp/engines/
H A Dgecko.js142 var pattern = new RegExp(trigger+cc,'gi');
144 this.syntaxHighlight('snippets',pattern,content);
158 var pattern = new RegExp('\\'+trigger+cc);
160 …parent.setTimeout(function () { CodePress.syntaxHighlight('complete',pattern,content)},0); // wait…
H A Dmsie.js151 var pattern = new RegExp(trigger+cc,"gi");
152 this.syntaxHighlight('snippets',pattern,content);
165 var pattern = new RegExp('\\'+trigger+cc);
167 …setTimeout(function () { CodePress.syntaxHighlight('complete',pattern,content)},0); // wait for ch…
/plugin/icons/syntax/
H A Dbreeze.php20 protected $pattern = '{{breeze>.+?}}'; variable in syntax_plugin_icons_breeze
H A Dfugue.php20 protected $pattern = '{{fugue>.+?}}'; variable in syntax_plugin_icons_fugue
H A Dflag.php20 protected $pattern = '{{flag>.+?}}'; variable in syntax_plugin_icons_flag
/plugin/filelist/
H A Dplugin.info.txt6 desc Lists files matching a given glob pattern.
/plugin/anewssystem/
H A Dsyntax.php721 $pattern = '/\{\{.*?\}\}/i';
722 $linkx = $this->replace_links($pattern, $value, 'medi');
726 $pattern = '/\[\[.*?\]\]/i';
727 $links = $this->replace_links($pattern, $value, 'url');
1032 $pattern = '/\{\{.*?\}\}/i';
1033 $linkx = $this->replace_links($pattern, $value, 'medi');
1037 $pattern = '/\[\[.*?\]\]/i';
1038 $links = $this->replace_links($pattern, $value, 'url');
1383 function replace_links($pattern, &$value, $r_string) { argument
1385 preg_match_all($pattern, $value, $links);
/plugin/redirector/
H A Dplugin.info.txt8 desc Redirect Pages when a pattern matches
/plugin/codemirror/dist/modes/
H A Dsparql.min.js.map1pattern\") {\n state.context.align = true;\n }\n\n if (curPunc == \"(\") pushCont…
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DMigrationNamespace.asciidoc31 $params['index'] = (string) Index pattern
/plugin/combo/lang/en/admin/
H A Dpagerules_intro.txt6 They are rules that are used to redirect a [[doku>pagename|DokuWiki ID]] based on a pattern to:
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ShoppingContent/
H A DProduct.php239 public $pattern; variable in Google\\Service\\ShoppingContent\\Product
1122 public function setPattern($pattern) argument
1124 $this->pattern = $pattern;
1131 return $this->pattern;
/plugin/vshare/syntax/
H A Dvideo.php60 $pattern = implode('|', array_keys($this->sites));
61 $this->Lexer->addSpecialPattern('\{\{\s?(?:' . $pattern . ')>[^}]*\}\}', $mode, 'plugin_vshare_video');
/plugin/combo/ComboStrap/
H A DStringUtility.php179 // /u for unicode support (https://www.php.net/manual/en/reference.pcre.pattern.modifiers.php)
218 public static function match($subject, $pattern) argument
220 return preg_match("/$pattern/", $subject) === 1;

1...<<11121314151617181920>>...28