Home
last modified time | relevance | path

Searched refs:self (Results 276 – 300 of 2449) sorted by last modified time

1...<<11121314151617181920>>...98

/plugin/combo/ComboStrap/Tag/
H A DSubscribeTag.php42 $subscribeTag = self::LOGICAL_TAG;
48 $data['list-value'] = $attributes->getValueAndRemove(self::LIST_ID_ATTRIBUTE);
H A DTableTag.php66 PluginUtility::getSnippetManager()->attachCssInternalStyleSheet(self::TABLE_SNIPPET_ID);
68 $renderer->doc .= TagAttributes::createEmpty(self::TAG_CONTAINER)
69 ->addClassName(self::TABLE_RESPONSIVE_CLASS)
71 $renderer->doc .= TagAttributes::createEmpty(self::TAG)
73 ->addClassName(self::BOOT_TABLE_CLASSES)
H A DWebCodeTag.php67 return [self::STORY_TYPE, self::RESULT_TYPE, self::INJECT_TYPE];
105 LogUtility::warning("The `type` value (" . self::RENDERING_ONLY_RESULT_DEPRECATED . ") should be replaced by (" . self::RESULT_TYPE . ")");
129 if (in_array($type, [WebCodeTag::RESULT_TYPE, self::INJECT_TYPE])) {
200 $openingTag->setType(self::INJECT_TYPE);
220 $type = self::STORY_TYPE;
262 if ($type === self::INJECT_TYPE) {
304 return self
[all...]
/plugin/combo/ComboStrap/TagAttribute/
H A DAlign.php30 const DEFAULT_AXIS = self::X_AXIS;
33 const CANONICAL = self::ALIGN_ATTRIBUTE;
41 $align = self::ALIGN_ATTRIBUTE;
55 LogUtility::error("The align value ($alignStringValue) is not a valid conditional value and was skipped", self::CANONICAL);
62 $attributes->addClassName(self::CENTER_CLASS);
72 $flexAxis[self::Y_AXIS] = true;
74 $attributes->addClassName("align-self{$breakpoint}-center");
90 $flexAxis[self::X_AXIS] = true;
104 $flexAxis[self::X_AXIS] = true;
116 $flexAxis[self
[all...]
H A DAnimation.php41 if ($attributes->hasComponentAttribute(self::ON_VIEW_ATTRIBUTE)) {
42 $onView = $attributes->getValueAndRemove(self::ON_VIEW_ATTRIBUTE);
44 $animateClass = self::ANIMATE_CLASS;
56 self::scrollMagicInit();
61 self::ON_VIEW_SNIPPET_ID,
68 LogUtility::internalError("Error while trying to add the animate css stylesheet",self::CANONICAL,$e);
92 $animateClass = self::ANIMATE_CLASS;
H A DBackgroundAttribute.php69 if ($tagAttributes->hasComponentAttribute(self::BACKGROUNDS)) {
70 PluginUtility::getSnippetManager()->attachCssInternalStyleSheet(self::CANONICAL);
71 $backgrounds = $tagAttributes->getValueAndRemove(self::BACKGROUNDS);
83 !isset($background[self::PATTERN_ATTRIBUTE])
90 $backgroundImage = $background[self::BACKGROUND_IMAGE] ?? null;
92 $tagAttributes->addComponentAttributeValueIfNotEmpty(self::BACKGROUND_IMAGE, $backgroundImage);
94 $backgroundColor = $background[self::BACKGROUND_COLOR] ?? null;
96 $tagAttributes->addComponentAttributeValueIfNotEmpty(self::BACKGROUND_COLOR, $backgroundColor);
102 $backgroundPosition = $background[self::BACKGROUND_POSITION] ?? null;
104 $tagAttributes->addComponentAttributeValueIfNotEmpty(self
[all...]
H A DBoldness.php14 const CANONICAL = self::BOLDNESS_ATTRIBUTE;
26 if ($tagAttributes->hasComponentAttribute(self::BOLDNESS_ATTRIBUTE)) {
27 $value = $tagAttributes->getValueAndRemove(self::BOLDNESS_ATTRIBUTE);
77 LogUtility::msg("The boldness name ($value) is unknown. The attribute was not applied", LogUtility::LVL_MSG_ERROR, self::CANONICAL);
H A DHero.php14 const CANONICAL = self::COMPONENT_NAME;
15 const ATTRIBUTE = self::COMPONENT_NAME;
21 $hero = $attributes->getValueAndRemove(self::ATTRIBUTE);
29 $attributes->addClassName(self::COMPONENT_NAME . "-sm");
33 $attributes->addClassName(self::COMPONENT_NAME . "-md");
37 $attributes->addClassName(self::COMPONENT_NAME . "-lg");
41 $attributes->addClassName(self::COMPONENT_NAME . "-xl");
54 PluginUtility::getSnippetManager()->attachCssInternalStyleSheet(self::COMPONENT_NAME);
56 LogUtility::error($e->getMessage(), self::CANONICAL);
H A DStyleAttribute.php72 $tagAttributes->addClassName(self::addComboStrapSuffix($logicalTag));
74 $tagAttributes->addClassName($logicalTag . "-" . $tagAttributes->getType() . "-" . self::COMBOSTRAP_FIX);
81 return $name . "-" . self::COMBOSTRAP_FIX;
127 self::arrayEquals($leftStylesArray,$rightStylesArray);
H A DTextAlign.php29 if ($attributes->hasComponentAttribute(self::ATTRIBUTE_NAME)) {
31 LogUtility::warning("The text-align attribute has been deprecated for the align attribute.", self::CANONICAL);
34 $textAlignValues = $attributes->getValuesAndRemove(self::ATTRIBUTE_NAME);
36 LogUtility::error("Unable to retrieve the tex-align attribute. Error: {$e->getMessage()}", self::CANONICAL);
43 LogUtility::error("The text-align value($textAlignValue) is not valid. Error: {$e->getMessage()}", self::CANONICAL);
51 LogUtility::msg("Bootstrap 4 does not support conditional value for the attribute (" . self::ATTRIBUTE_NAME . "). Therefore, the value ($textAlignValue) cannot be applied", LogUtility::LVL_MSG_WARNING, self::CANONICAL);
58 $attributes->addStyleDeclarationIfNotSet(self::ATTRIBUTE_NAME, "left");
62 $attributes->addStyleDeclarationIfNotSet(self::ATTRIBUTE_NAME, "right");
66 $attributes->addStyleDeclarationIfNotSet(self
[all...]
H A DToggle.php42 $value = $attributes->getValueAndRemove(self::TOGGLE_STATE);
44 if ($value === self::TOGGLE_STATE_NONE) {
53 case self::TOGGLE_STATE_EXPANDED:
56 case self::TOGGLE_STATE_COLLAPSED:
66 LogUtility::msg("The toggle state ($value) is invalid. It should be (expanded, collapsed or breakpoint-expanded)", LogUtility::LVL_MSG_ERROR, self::CANONICAL);
71 if ($toggleStateValue !== self::TOGGLE_STATE_EXPANDED) {
72 LogUtility::msg("The toggle breakpoint ($value) supports only `expanded` as value, not $toggleStateValue.", LogUtility::LVL_MSG_ERROR, self::CANONICAL);
77 LogUtility::msg("A conditional toggle breakpoint ($value) needs an id attribute.", LogUtility::LVL_MSG_ERROR, self::CANONICAL);
92 $snippetId = self::CANONICAL."-$id";
131 $collapsed = self
[all...]
H A DUnderline.php13 const CANONICAL = self::UNDERLINE_ATTRIBUTE;
H A DVertical.php16 const CANONICAL = self::VERTICAL_ATTRIBUTE;
25 Horizontal::processFlexAttribute( self::VERTICAL_ATTRIBUTE, $tagAttributes);
/plugin/combo/vendor/php-webdriver/webdriver/lib/Interactions/Internal/
H A DWebDriverSingleKeyAction.php43 if (!in_array($key, self::MODIFIER_KEYS, true)) {
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Tree/
H A DTrees.php27 $string = self::getNodeText($tree, $ruleNames);
42 $result .= ($i > 0 ? ' ' : '') . self::toStringTree($child, $ruleNames);
126 return self::findAllNodes($tree, $ttype, true);
134 return self::findAllNodes($tree, $ruleIndex, false);
142 return self::findNodesInTree($tree, $index, $findTokens, []);
164 $nodes = self::findNodesInTree($child, $index, $findTokens, $nodes);
181 $nodes[] = self::descendants($child);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Utils/
H A DBitSet.php61 return $other instanceof self
H A DMap.php125 if (!$other instanceof self
142 || !self::isEqual($value, $otherValue)) {
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DVocabularyImpl.php65 public static function emptyVocabulary() : self
69 return $empty ?? ($empty = new self());
90 return self::emptyVocabulary();
/plugin/combo/vendor/php-webdriver/webdriver/lib/Net/
H A DURLChecker.php21 usleep(self::POLL_INTERVAL_MS);
39 usleep(self::POLL_INTERVAL_MS);
59 curl_setopt($ch, CURLOPT_CONNECTTIMEOUT_MS, self::CONNECT_TIMEOUT_MS);
/plugin/combo/ComboStrap/
H A DTemplateEngine.php60 $default = self::CONF_THEME_DEFAULT;
75 $themeDirectory = self::getThemeHomeAsWikiPath()->resolve($themeName);
125 $pagesTemplatesLoader = new FilesystemLoader($templatesSearchDirectoriesAsStringPath, ["extension" => self::EXTENSION_HBS]);
126 $pagesPartialLoader = new FilesystemLoader($partialSearchDirectoriesAsStringPath, ["extension" => self::EXTENSION_HBS]);
131 self::addHelper($handleBarsForPages);
139 $componentsHtmlTemplatesLoader = new FilesystemLoader($componentsHtmlSearchDirectoriesAsStringPath, ["extension" => self::EXTENSION_HBS]);
177 self::addHelper($handleBars);
231 return self::createForTheme(self::CONF_THEME_DEFAULT);
239 return self
[all...]
H A DTemplateForWebPage.php165 return self::DOCTYPE . $pageTemplateEngine->renderWebPage($template, $model);
286 ->getBooleanValue(self::CONF_INTERNAL_IS_SOCIAL, true);
344 throw new ExceptionRuntimeInternal("Bad local name meta, should not occur", self::CANONICAL, 1, $e);
381 LogUtility::internalError("The internal fav icon ($internalFavIcon) should be at minimal found", self::CANONICAL);
415 LogUtility::internalError("The internal icon ($internalIcon) should be at minimal found", self::CANONICAL);
448 LogUtility::internalError("The internal apple icon ($internalIcon) should be at minimal found", self::CANONICAL);
456 ->addOutputAttributeValue("rel", self::APPLE_TOUCH_ICON_REL_VALUE)
600 LogUtility::error("Error while rendering the page content.", self::CANONICAL, $e);
622 LogUtility::error("Error while rendering the slot $elementId for the template ($this)", self::CANONICAL, $e);
673 $model['powered-by'] = self
[all...]
H A DTemplateSlot.php13 self::PAGE_SIDE_ID,
14 self::PAGE_HEADER_ID,
15 self::PAGE_MAIN_ID,
16 self::PAGE_FOOTER_ID,
17 self::MAIN_HEADER_ID,
18 self::MAIN_CONTENT_ID,
19 self::MAIN_SIDE_ID,
20 self::MAIN_FOOTER_ID
56 if (!in_array($elementId, self::SLOT_IDS)) {
57 throw new ExceptionRuntimeInternal("$elementId is not a valid slot id. Valid ids are (" . ArrayUtility::formatAsString(self
[all...]
H A DTemplateStore.php58 return self::CANONICAL;
H A DTextColor.php12 const CANONICAL = self::TEXT_COLOR_ATTRIBUTE;
64 if (in_array($lowerCaseColorValue, self::TEXT_COLORS)) {
/plugin/combo/vendor/php-webdriver/webdriver/lib/Remote/
H A DDesiredCapabilities.php33 $w3cToOss = array_flip(self::$ossToW3c);
42 return new self($capabilities);
232 if (array_key_exists($capabilityKey, self::$ossToW3c)) {
234 $w3cCapabilities[self::$ossToW3c[$capabilityKey]] = mb_strtolower($capabilityValue);
237 if ($w3cCapabilities[self::$ossToW3c[$capabilityKey]] === 'any') {
238 unset($w3cCapabilities[self::$ossToW3c[$capabilityKey]]);
241 $w3cCapabilities[self::$ossToW3c[$capabilityKey]] = $capabilityValue;

1...<<11121314151617181920>>...98