Home
last modified time | relevance | path

Searched refs:pattern (Results 76 – 100 of 693) sorted by last modified time

12345678910>>...28

/plugin/combo/syntax/
H A Dlink.php29 * A link pattern to take over the link of Dokuwiki
87 * Dokuwiki Link pattern ter info
235 $pattern = self::ENTRY_PATTERN_SINGLE_LINE;
236 $this->Lexer->addEntryPattern($pattern, $mode, PluginUtility::getModeFromTag($this->getPluginComponent()));
H A Dmath.php76 $pattern = PluginUtility::getLeafContainerTagPattern($element);
77 $this->Lexer->addSpecialPattern($pattern, $mode, PluginUtility::getModeFromTag($this->getPluginComponent()));
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
H A Dmetadata.php133 $pattern = PluginUtility::getEmptyTagPattern(self::TAG);
134 $this->Lexer->addSpecialPattern($pattern, $mode, PluginUtility::getModeFromTag($this->getPluginComponent()));
141 * The handle function goal is to parse the matched syntax through the pattern function
H A Dminimap.php26 $pattern = '<' . self::MINIMAP_TAG_NAME . '[^>]*>';
27 $this->Lexer->addSpecialPattern($pattern, $aMode, PluginUtility::getModeFromTag($this->getPluginComponent()));
56 * The handle function goal is to parse the matched syntax through the pattern function
72 // As there is only one call to connect to in order to a add a pattern,
126 // As there is only one call to connect to in order to a add a pattern,
H A Dnavbarcollapse.php28 * The name of the class must follow a pattern (don't change it) ie syntax_plugin_PluginName_ComponentName
99 * Create a pattern that will called this plugin
108 $pattern = XmlTagProcessing::getContainerTagPattern(self::TAG);
109 $this->Lexer->addEntryPattern($pattern, $mode, 'plugin_' . PluginUtility::PLUGIN_BASE_NAME . '_' . $this->getPluginComponent());
123 * The handle function goal is to parse the matched syntax through the pattern function
H A Dnavbargroup.php20 * The name of the class must follow a pattern (don't change it)
84 * Create a pattern that will called this plugin
102 $pattern = XmlTagProcessing::getContainerTagPattern(self::TAG);
103 $this->Lexer->addEntryPattern($pattern, $mode, PluginUtility::getModeFromTag($this->getPluginComponent()));
118 * The handle function goal is to parse the matched syntax through the pattern function
H A Dtab.php14 * The name of the class must follow a pattern (don't change it)
79 * Create a pattern that will called this plugin
88 $pattern = XmlTagProcessing::getContainerTagPattern(self::TAG);
89 $this->Lexer->addEntryPattern($pattern, $mode, PluginUtility::getModeFromTag($this->getPluginComponent()));
103 * The handle function goal is to parse the matched syntax through the pattern function
H A Dtabpanels.php20 * The name of the class must follow a pattern (don't change it)
84 * Create a pattern that will called this plugin
92 $pattern = XmlTagProcessing::getContainerTagPattern(self::TAG);
93 $this->Lexer->addEntryPattern($pattern, $mode, PluginUtility::getModeFromTag($this->getPluginComponent()));
106 * The handle function goal is to parse the matched syntax through the pattern function
H A Dtext.php89 $pattern = XmlTagProcessing::getContainerTagPattern($tag);
90 $this->Lexer->addEntryPattern($pattern, $mode, PluginUtility::getModeFromTag($this->getPluginComponent()));
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 Dtogglecollapse.php68 * Create a pattern that will called this plugin
80 $pattern = XmlTagProcessing::getContainerTagPattern(self::getTag());
81 $this->Lexer->addEntryPattern($pattern, $mode, 'plugin_' . PluginUtility::PLUGIN_BASE_NAME . '_' . $this->getPluginComponent());
H A Dtoggleexpand.php68 * Create a pattern that will called this plugin
80 $pattern = XmlTagProcessing::getContainerTagPattern(self::getTag());
81 $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 Dunit.php87 $pattern = XmlTagProcessing::getContainerTagPattern(self::TAG);
88 $this->Lexer->addEntryPattern($pattern, $mode, 'plugin_' . PluginUtility::PLUGIN_BASE_NAME . '_' . $this->getPluginComponent());
102 * You get the match for each pattern in the $match variable
103 * $state says if it's an entry, exit or match pattern
H A Dwebcode.php107 * Create a pattern that will called this plugin
117 $pattern = XmlTagProcessing::getContainerTagPattern(WebCodeTag::TAG);
118 $this->Lexer->addEntryPattern($pattern, $mode, PluginUtility::getModeFromTag($this->getPluginComponent()));
132 * You get the match for each pattern in the $match variable
133 * $state says if it's an entry, exit or match pattern
140 * The handle function goal is to parse the matched syntax through the pattern function
H A Dxmlblockemptytag.php13 * The empty pattern / void element
65 $pattern = PluginUtility::getEmptyTagPattern($tag);
66 $this->Lexer->addSpecialPattern($pattern, $mode, PluginUtility::getModeFromTag($this->getPluginComponent()));
H A Dxmlblocktag.php14 * The xml block tag (non-empty) pattern
125 // One pattern to not compete between pattern
126 // this pattern ensure that the tag
130 $pattern = XmlTagProcessing::START_TAG_PATTERN;
131 $this->Lexer->addEntryPattern($pattern, $mode, PluginUtility::getModeFromTag($this->getPluginComponent()));
H A Dxmlinlinetag.php27 * The name of the class must follow a pattern (don't change it)
114 * Create a pattern that will called this plugin
124 $pattern = XmlTagProcessing::getContainerTagPattern($tag);
125 $this->Lexer->addEntryPattern($pattern, $mode, 'plugin_' . PluginUtility::PLUGIN_BASE_NAME . '_' . $this->getPluginComponent());
142 * The handle function goal is to parse the matched syntax through the pattern function
H A Dxmlprotectedtag.php93 $pattern = XmlTagProcessing::getContainerTagPattern($tag);
94 $this->Lexer->addEntryPattern($pattern, $mode, PluginUtility::getModeFromTag($this->getPluginComponent()));
110 * The handle function goal is to parse the matched syntax through the pattern function
/plugin/combo/ComboStrap/
H A DPipelineUtility.php230 $pattern = $commandArgs[0];
231 $words = preg_split("/$pattern/i", $value);
255 $result .= $pattern;
264 return "An error occurred: could not split with the pattern `$pattern`, the value `$value`.";
285 $pattern = null;
291 $pattern = $commandArgs[0];
295 $pattern = $commandArgs[0];
322 return $dateTime->formatLocale($pattern, $derivedLocale);
H A DSqlite.php130 $regexpClosure = function ($pattern, $data, $delimiter = '~', $modifiers = 'isuS') {
131 if (isset($pattern, $data) === true) {
132 return (preg_match(sprintf('%1$s%2$s%1$s%3$s', $delimiter, $pattern, $modifiers), $data) > 0);
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;
/plugin/combo/vendor/symfony/yaml/
H A DParser.php860 $pattern = sprintf('/^ {%d}(.*)$/', $indentation);
865 self::preg_match($pattern, $this->currentLine, $matches)
1082 public static function preg_match(string $pattern, string $subject, array &$matches = null, int $flags = 0, int $offset = 0): int argument
1084 if (false === $ret = preg_match($pattern, $subject, $matches, $flags, $offset)) {
/plugin/combo/ComboStrap/Web/
H A DSanitizer.php19 $pattern = "<$forbiddenNode";
20 $result = preg_match_all("/$pattern/im", $content, $matches);
29 $pattern = "style=";
30 $result = preg_match_all("/$pattern/im", $content, $matches);
35 $pattern = "on[a-zA-Z]*=";
36 $result = preg_match_all("/$pattern/im", $content, $matches);

12345678910>>...28