Prado\Web\UI\TControl::getAttributes PHP Метод

getAttributes() публичный Метод

Custom attributes are name-value pairs that may be rendered as HTML tags' attributes.
public getAttributes ( ) : TAttributeCollection
Результат Prado\Collections\TAttributeCollection the list of custom attributes
    public function getAttributes()
    {
        if ($attributes = $this->getViewState('Attributes', null)) {
            return $attributes;
        } else {
            $attributes = new TAttributeCollection();
            $this->setViewState('Attributes', $attributes, null);
            return $attributes;
        }
    }
TControl