Ouzo\Helper\ModelFormBuilder::textArea PHP 메소드

textArea() 공개 메소드

public textArea ( $field, array $options = [] )
$options array
    public function textArea($field, array $options = array())
    {
        $attributes = $this->_generatePredefinedAttributes($field);
        $attributes = $this->_mergeAttributes($attributes, $options);
        return textAreaTag($this->generateName($field), $this->_object->{$field}, $attributes);
    }