Encore\Admin\Grid\Row::getHtmlAttributes PHP Méthode

getHtmlAttributes() public méthode

Get attributes in html format.
public getHtmlAttributes ( ) : string
Résultat string
    public function getHtmlAttributes()
    {
        $attrArr = [];
        foreach ($this->attributes as $name => $val) {
            $attrArr[] = "{$name}=\"{$val}\"";
        }
        return implode(' ', $attrArr);
    }