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);
    }