Home
last modified time | relevance | path

Searched refs:TAG (Results 51 – 75 of 151) sorted by last modified time

1234567

/plugin/combo/syntax/
H A Dmath.php15 const TAG = "math"; define in syntax_plugin_combo_math
139 $snippetManager->attachCssInternalStyleSheet(self::TAG);
161 self::TAG,
166 self::TAG,
H A Dmedia.php54 const TAG = "media"; define in syntax_plugin_combo_media
60 const COMPONENT = 'combo_' . self::TAG;
154 LogUtility::internalError("The path of an internal media should be known. We were unable to update the statistics.", self::TAG);
240 LogUtility::error($message, self::TAG, $e);
253 [syntax_plugin_combo_link::TAG, syntax_plugin_combo_brand::TAG])) {
269 PluginUtility::TAG => MediaMarkup::TAG
351 LogUtility::internalError("We cannot get the path of the image. Error: {$e->getMessage()}. The image was not registered in the metadata", self::TAG);
H A Dmenubar.php42 const TAG = 'menubar'; define in syntax_plugin_combo_menubar
44 const TAGS = [self::TAG, self::OLD_TAG];
47 const CANONICAL = self::TAG;
180 return PluginUtility::handleAndReturnUnmatchedData(self::TAG, $match, $handler);
247 $fixedTopSnippetId = self::TAG . "-" . $fixedTopClass;
H A Dmetadata.php28 public const TAG = "metadata"; define in syntax_plugin_combo_metadata
133 $pattern = PluginUtility::getEmptyTagPattern(self::TAG);
H A Dnavbarcollapse.php32 const TAG = 'collapse'; define in syntax_plugin_combo_navbarcollapse
107 if ($mode == PluginUtility::getModeFromTag(syntax_plugin_combo_menubar::TAG)) {
108 $pattern = XmlTagProcessing::getContainerTagPattern(self::TAG);
117 $this->Lexer->addExitPattern('</' . self::TAG . '>', 'plugin_' . PluginUtility::PLUGIN_BASE_NAME . '_' . $this->getPluginComponent());
149 return PluginUtility::handleAndReturnUnmatchedData(self::TAG, $match, $handler);
H A Dnavbargroup.php29 const TAG = "group"; define in syntax_plugin_combo_navbargroup
96 PluginUtility::getModeFromTag(syntax_plugin_combo_menubar::TAG)
102 $pattern = XmlTagProcessing::getContainerTagPattern(self::TAG);
112 $this->Lexer->addExitPattern('</' . self::TAG . '>', 'plugin_' . PluginUtility::PLUGIN_BASE_NAME . '_' . $this->getPluginComponent());
144 return PluginUtility::handleAndReturnUnmatchedData(self::TAG,$match,$handler);
H A Dstrong.php19 const TAG = "strong"; define in syntax_plugin_combo_strong
125 return PluginUtility::handleAndReturnUnmatchedData(self::TAG, $match, $handler);
H A Dtab.php23 const TAG = 'tab'; define in syntax_plugin_combo_tab
88 $pattern = XmlTagProcessing::getContainerTagPattern(self::TAG);
97 $this->Lexer->addExitPattern('</' . self::TAG . '>', PluginUtility::getModeFromTag($this->getPluginComponent()));
130 return PluginUtility::handleAndReturnUnmatchedData(self::TAG, $match, $handler);
H A Dtabpanels.php28 const TAG = 'tabpanels'; define in syntax_plugin_combo_tabpanels
92 $pattern = XmlTagProcessing::getContainerTagPattern(self::TAG);
100 $this->Lexer->addExitPattern('</' . self::TAG . '>', PluginUtility::getModeFromTag($this->getPluginComponent()));
134 return PluginUtility::handleAndReturnUnmatchedData(self::TAG,$match,$handler);
H A Dtext.php26 const TAG = "text"; define in syntax_plugin_combo_text
27 const TAGS = ["typo", self::TAG];
119 return PluginUtility::handleAndReturnUnmatchedData(self::TAG, $match, $handler);
H A Dtoggle.php18 const TAG = "toggle"; define in syntax_plugin_combo_toggle
19 const CANONICAL = self::TAG;
110 ->setLogicalTag(self::TAG);
118 return PluginUtility::handleAndReturnUnmatchedData(self::TAG, $match, $handler);
224 return self::TAG;
H A Dtogglecollapse.php12 const TAG = "collapse"; define in syntax_plugin_combo_togglecollapse
79 if ($mode == PluginUtility::getModeFromTag(syntax_plugin_combo_toggle::TAG)) {
108 ->setLogicalTag(self::TAG);
115 return PluginUtility::handleAndReturnUnmatchedData(self::TAG, $match, $handler);
146 ->setLogicalTag(self::TAG);
167 return self::TAG;
H A Dtoggleexpand.php12 const TAG = "expand"; define in syntax_plugin_combo_toggleexpand
79 if ($mode == PluginUtility::getModeFromTag(syntax_plugin_combo_toggle::TAG)) {
108 ->setLogicalTag(self::TAG);
115 return PluginUtility::handleAndReturnUnmatchedData(self::TAG, $match, $handler);
146 ->setLogicalTag(self::TAG);
167 return self::TAG;
H A Dtooltip.php36 const TAG = "tooltip"; define in syntax_plugin_combo_tooltip
113 $pattern = XmlTagProcessing::getContainerTagPattern(self::TAG);
121 $this->Lexer->addExitPattern('</' . self::TAG . '>', PluginUtility::getModeFromTag($this->getPluginComponent()));
152 return PluginUtility::handleAndReturnUnmatchedData(self::TAG, $match, $handler);
H A Dunit.php27 const TAG = "unit"; define in syntax_plugin_combo_unit
87 $pattern = XmlTagProcessing::getContainerTagPattern(self::TAG);
95 $this->Lexer->addExitPattern('</' . self::TAG . '>', 'plugin_' . PluginUtility::PLUGIN_BASE_NAME . '_' . $this->getPluginComponent());
128 return PluginUtility::handleAndReturnUnmatchedData(self::TAG, $match, $handler);
H A Dvariable.php20 const TAG = "variable"; define in syntax_plugin_combo_variable
23 const CANONICAL = self::TAG;
H A Dwebcode.php117 $pattern = XmlTagProcessing::getContainerTagPattern(WebCodeTag::TAG);
126 $this->Lexer->addExitPattern('</' . WebCodeTag::TAG . '>', PluginUtility::getModeFromTag($this->getPluginComponent()));
174 return PluginUtility::handleAndReturnUnmatchedData(WebCodeTag::TAG, $match, $handler);
221 $tagAttributes = TagAttributes::createFromCallStackArray($callStackArray, WebCodeTag::TAG);
/plugin/combo/ComboStrap/
H A DMasonryTag.php98 in_array($actualCall->getTagName(), [CardTag::CARD_TAG, BlockquoteTag::TAG])
H A DMediaMarkup.php36 public const TAG = "media"; define in ComboStrap\\MediaMarkup
H A DMessage.php13 const TAG = "message"; define in ComboStrap\\Message
146 PluginUtility::getSnippetManager()->attachCssInternalStyleSheet(self::TAG);
H A DCardTag.php119 if ($actualCall->getTagName() === syntax_plugin_combo_header::TAG && $actualCall->getState() === DOKU_LEXER_ENTER) {
122 $actualCall->getTagName() === syntax_plugin_combo_header::TAG
132 $insertBodyAfterThisCalls = PluginUtility::mergeAttributes(Call::IMAGE_TAGS, [syntax_plugin_combo_header::TAG]);
160 BoxTag::TAG,
167 \syntax_plugin_combo_xmlblocktag::TAG
234 BoxTag::TAG,
241 \syntax_plugin_combo_xmlblocktag::TAG
248 BoxTag::TAG,
259 \syntax_plugin_combo_xmlblocktag::TAG
H A DCarrouselTag.php34 public const CANONICAL = CarrouselTag::TAG;
38 public const TAG = 'carrousel'; define in ComboStrap\\CarrouselTag
132 $snippetId = CarrouselTag::TAG;
H A DContainerTag.php18 public const CANONICAL = ContainerTag::TAG;
28 public const TAG = "container"; define in ComboStrap\\ContainerTag
/plugin/combo/action/
H A Dlogin.php33 const TAG = "login"; define in action_plugin_combo_login
34 const FORM_LOGIN_CLASS = "form-" . self::TAG;
52 print IdentityFormsHelper::getHtmlStyleTag(self::TAG);
122 $tag = self::TAG;
231 print IdentityFormsHelper::getHtmlStyleTag(self::TAG);
H A Dregistration.php31 const TAG = "register"; define in action_plugin_combo_registration
32 const FORM_REGISTER_CLASS = "form-" . self::TAG;
100 $tag = self::TAG;
118 print IdentityFormsHelper::getHtmlStyleTag(self::TAG);
142 print IdentityFormsHelper::getHtmlStyleTag(self::TAG);
266 $tag = self::TAG;

1234567