php-censor/src/PHPCensor/Form/Element/Text.php
2018-03-09 13:46:18 +07:00

20 lines
286 B
PHP

<?php
namespace PHPCensor\Form\Element;
use PHPCensor\Form\Input;
use PHPCensor\View;
class Text extends Input
{
/**
* @param View $view
*/
protected function onPreRender(View &$view)
{
parent::onPreRender($view);
$view->type = 'text';
}
}