Encore\Admin\Grid\Row::getHtmlAttributes PHP Метод

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

Get attributes in html format.
public getHtmlAttributes ( ) : string
Результат string
    public function getHtmlAttributes()
    {
        $attrArr = [];
        foreach ($this->attributes as $name => $val) {
            $attrArr[] = "{$name}=\"{$val}\"";
        }
        return implode(' ', $attrArr);
    }