true, 'cols' => true, 'dirname' => true, 'disabled' => true, 'form' => true, 'maxlength' => true, 'name' => true, 'placeholder' => true, 'readonly' => true, 'required' => true, 'rows' => true, 'wrap' => true, ); /** * Invoke helper as functor * * Proxies to {@link render()}. * * @param ElementInterface|null $element * @return string|FormTextarea */ public function __invoke(ElementInterface $element = null) { if (!$element) { return $this; } return $this->render($element); } /** * Render a form ', $this->createAttributesString($attributes), $escapeHtml($content) ); } }