Lines Matching refs:attributeValue
421 public static function isEmptyValue($attributeValue): bool argument
423 return empty($attributeValue) && !is_bool($attributeValue);
472 public function addComponentAttributeValue($attributeName, $attributeValue): TagAttributes argument
475 if (TagAttributes::isEmptyValue($attributeValue)) {
489 …s->componentAttributesCaseInsensitive[$attLower] = Html::mergeClassNames($attributeValue, $actual);
492 …ique value and has already a value ($actual). to set another value ($attributeValue), use the `set…
494 $this->componentAttributesCaseInsensitive[$attLower] = $attributeValue;
501 public function setComponentAttributeValue($attributeName, $attributeValue): TagAttributes argument
506 $this->componentAttributesCaseInsensitive[$attLower] = $attributeValue;
511 public function addComponentAttributeValueIfNotEmpty($attributeName, $attributeValue) argument
513 if (!empty($attributeValue)) {
514 $this->addComponentAttributeValue($attributeName, $attributeValue);