Home
last modified time | relevance | path

Searched refs:styleDeclaration (Results 1 – 2 of 2) sorted by relevance

/template/strap/ComboStrap/
H A DTagAttributes.php221 private array $styleDeclaration = array(); variable in ComboStrap\\TagAttributes
453 if (sizeof($this->styleDeclaration) === 0) {
456 return Html::array2InlineStyle($this->styleDeclaration);
462 return $this->styleDeclaration;
909 ArrayUtility::addIfNotSet($this->styleDeclaration, $property, $value);
915 $this->styleDeclaration[$property] = $value;
921 function hasStyleDeclaration($styleDeclaration): bool argument
923 return isset($this->styleDeclaration[$styleDeclaration]);
926 public function getAndRemoveStyleDeclaration($styleDeclaration) argument
928 $styleValue = $this->styleDeclaration[$styleDeclaration];
[all …]
/template/strap/ComboStrap/Xml/
H A DXmlElement.php25 private array $styleDeclaration = []; variable in ComboStrap\\Xml\\XmlElement
272 ArrayUtility::addIfNotSet($this->styleDeclaration, $name, $value);
273 $this->setAttribute("style", Html::array2InlineStyle($this->styleDeclaration));