Home
last modified time | relevance | path

Searched refs:Dimension (Results 1 – 25 of 31) sorted by relevance

12

/template/strap/ComboStrap/
H A DFetcherImage.php58 $url->addQueryParameterIfNotPresent(Dimension::RATIO_ATTRIBUTE, $ratio);
65 $url->addQueryParameterIfNotPresent(Dimension::WIDTH_KEY_SHORT, $requestedWidth);
72 $url->addQueryParameterIfNotPresent(Dimension::HEIGHT_KEY_SHORT, $requestedHeight);
136 $requestedWidth = $tagAttributes->getValueAndRemove(Dimension::WIDTH_KEY);
138 $requestedWidth = $tagAttributes->getValueAndRemove(Dimension::WIDTH_KEY_SHORT);
149 $requestedHeight = $tagAttributes->getValueAndRemove(Dimension::HEIGHT_KEY);
151 $requestedHeight = $tagAttributes->getValueAndRemove(Dimension::HEIGHT_KEY_SHORT);
162 $requestedRatio = $tagAttributes->getValueAndRemove(Dimension::RATIO_ATTRIBUTE);
512 $this->requestedRatioAsFloat = Dimension::convertTextualRatioToNumber($requestedRatio);
H A DDimension.php12 class Dimension class
99 … $scrollMechanism = $attributes->getValueAndRemoveIfPresent(Dimension::SCROLL);
187 $scrollAttribute = $openingCall->getAttribute(Dimension::SCROLL);
194 $openingCall->setAttribute(Dimension::SCROLL, Dimension::SCROLL_LIFT_MECHANISM);
H A DMarkupRef.php149 $this->url->addQueryParameter(Dimension::WIDTH_KEY, $width);
152 $this->url->addQueryParameter(Dimension::HEIGHT_KEY, $height);
155 $this->url->addQueryParameter(Dimension::WIDTH_KEY, $width);
532 $this->url->addQueryParameter(Dimension::WIDTH_KEY, $sizing[1]);
534 $this->url->addQueryParameter(Dimension::HEIGHT_KEY, $sizing[2]);
651 case Dimension::WIDTH_KEY_SHORT: // used in a link w=xxx
652 $this->url->addQueryParameter(Dimension::WIDTH_KEY, $value);
654 case Dimension::HEIGHT_KEY_SHORT: // used in a link h=xxxx
655 $this->url->addQueryParameter(Dimension::HEIGHT_KEY, $value);
H A DSvgImageLink.php168 $imgAttributes->addOutputAttributeValue(Dimension::WIDTH_KEY, $svgFetch->getTargetWidth());
169 … $imgAttributes->addOutputAttributeValue(Dimension::HEIGHT_KEY, $svgFetch->getTargetHeight());
175 … $imgAttributes->addComponentAttributeValue(Dimension::WIDTH_KEY, $svgFetch->getRequestedWidth());
180 …$imgAttributes->addComponentAttributeValue(Dimension::HEIGHT_KEY, $svgFetch->getRequestedHeight());
H A DMediaMarkup.php294 $width = $markupUrl->getQueryPropertyValue(Dimension::WIDTH_KEY);
300 $height = $markupUrl->getQueryPropertyValue(Dimension::HEIGHT_KEY);
742 $width = $tagAttributes->getValueAndRemoveIfPresent(Dimension::WIDTH_KEY);
744 $this->fetchUrl->addQueryParameterIfNotPresent(Dimension::WIDTH_KEY, $width);
746 $height = $tagAttributes->getValueAndRemoveIfPresent(Dimension::HEIGHT_KEY);
748 $this->fetchUrl->addQueryParameterIfNotPresent(Dimension::HEIGHT_KEY, $height);
750 $ratio = $tagAttributes->getValueAndRemoveIfPresent(Dimension::RATIO_ATTRIBUTE);
752 $this->fetchUrl->addQueryParameterIfNotPresent(Dimension::RATIO_ATTRIBUTE, $ratio);
H A DImageSystem.php22 $stringRatio = $tagAttributes->getValue(Dimension::RATIO_ATTRIBUTE);
33 $targetRatio = Dimension::convertTextualRatioToNumber($stringRatio);
H A DPageImageTag.php86 … $zoom = $tagAttributes->getValueAndRemoveIfPresent(Dimension::ZOOM_ATTRIBUTE, self::DEFAULT_ZOOM);
128 $width = $tagAttributes->getValueAndRemoveIfPresent(Dimension::WIDTH_KEY);
129 $height = $tagAttributes->getValueAndRemoveIfPresent(Dimension::HEIGHT_KEY);
130 $ratio = $tagAttributes->getValueAndRemoveIfPresent(Dimension::RATIO_ATTRIBUTE);
H A DCardTag.php68 Dimension::addScrollToggleOnClickIfNoControl($callStack);
100 if (!$actualCall->hasAttribute(Dimension::RATIO_ATTRIBUTE)) {
101 $actualCall->addAttribute(Dimension::RATIO_ATTRIBUTE, "16:9");
H A DPrismTags.php34 Dimension::addScrollToggleOnClickIfNoControl($callStack);
H A DGridTag.php307 $widthAttributeValue = $actualCall->getAttribute(Dimension::WIDTH_KEY);
395 $widthAttributeValue = $childOpeningTag->getAttribute(Dimension::WIDTH_KEY);
414 $childOpeningTag->removeAttribute(Dimension::WIDTH_KEY);
H A DBrandTag.php107 $tagAttributes->removeComponentAttributeIfPresent(Dimension::WIDTH_KEY);
200 $width = $brandAttributes->getValueAsInteger(Dimension::WIDTH_KEY);
H A DFetcherSvg.php526 $url->addQueryParameter(Dimension::ZOOM_ATTRIBUTE, $this->getRequestedZoom());
1033 ->setAttribute(Dimension::WIDTH_KEY, $targetWidth)
1034 ->setAttribute(Dimension::HEIGHT_KEY, $targetHeight);
1390 case Dimension::WIDTH_KEY:
1391 case Dimension::HEIGHT_KEY:
1403 if ($svgAttribute === Dimension::WIDTH_KEY) {
1409 case Dimension::ZOOM_ATTRIBUTE;
H A DTagAttributes.php83 Dimension::RATIO_ATTRIBUTE,
91 Dimension::ZOOM_ATTRIBUTE,
395 return Dimension::WIDTH_KEY;
397 return Dimension::HEIGHT_KEY;
555 Dimension::processWidthAndHeight($this);
H A DIconTag.php48 … $requestedWidth = $tagAttributes->getValue(Dimension::WIDTH_KEY, FetcherSvg::DEFAULT_ICON_LENGTH);
/template/strap/ComboStrap/Tag/
H A DBackgroundTag.php7 use ComboStrap\Dimension; alias
194 Dimension::WIDTH_KEY => $imageAttribute[3],
195 Dimension::HEIGHT_KEY => $imageAttribute[4],
H A DBoxTag.php8 use ComboStrap\Dimension; alias
101 Dimension::addScrollToggleOnClickIfNoControl($callStack);
H A DAdTag.php17 use ComboStrap\Dimension; alias
154 ->setComponentAttributeValue(Dimension::WIDTH_KEY, "600")
H A DWebCodeTag.php6 use ComboStrap\Dimension; alias
73 $defaultAttributes[Dimension::WIDTH_KEY] = '100%';
/template/strap/syntax/
H A Dtext.php6 use ComboStrap\Dimension; alias
137 Dimension::addScrollToggleOnClickIfNoControl($callStack);
H A Dnote.php7 use ComboStrap\Dimension; alias
122 Dimension::addScrollToggleOnClickIfNoControl($callStack);
H A Dcell.php15 use ComboStrap\Dimension; alias
38 const WIDTH_ATTRIBUTE = Dimension::WIDTH_KEY;
H A Dcode.php5 use ComboStrap\Dimension; alias
156 Dimension::addScrollToggleOnClickIfNoControl($callStack);
H A Dcontentlist.php7 use ComboStrap\Dimension; alias
205 Dimension::WIDTH_KEY => "fit",
H A Dwebcode.php20 use ComboStrap\Dimension; alias
/template/strap/ComboStrap/TagAttribute/
H A DAlign.php9 use ComboStrap\Dimension; alias
84 $attributes->addStyleDeclarationIfNotSet(Dimension::WIDTH_KEY, "fit-content");

12