Exemplo n.º 1
0
 public static function textarea($name, $value = '', array $attributes = array(), $textMode = 'textarea')
 {
     $control = new TextBox($name, $value, $attributes, $textMode);
     $control->setEscaper(self::$escaper);
     echo $control->render();
 }