Contao\FormTextArea::generate PHP Method

generate() public method

Generate the widget and return it as string
public generate ( ) : string
return string The widget markup
    public function generate()
    {
        return sprintf('<textarea name="%s" id="ctrl_%s" class="textarea%s" rows="%s" cols="%s"%s>%s</textarea>', $this->strName, $this->strId, $this->strClass != '' ? ' ' . $this->strClass : '', $this->intRows, $this->intCols, $this->getAttributes(), $this->value);
    }