Prado\Web\UI\ActiveControls\TActiveCheckBox::getLabelAttributes PHP Метод

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

Overrides parent implementation to ensure label has ID.
public getLabelAttributes ( ) : TMap
Результат TMap list of attributes to be rendered for label beside the checkbox
    public function getLabelAttributes()
    {
        $attributes = parent::getLabelAttributes();
        $attributes['id'] = $this->getDefaultLabelID();
        return $attributes;
    }