Implements the magic __toString() method.
Overrides AttributeValueBase::__toString
public function __toString() { // Filter out any empty values before printing. $this->value = array_unique(array_filter($this->value)); return Html::escape(implode(' ', $this->value)); }