php-censor/src/B8Framework/Form/Element/Text.php
2018-02-21 10:46:57 +07:00

20 lines
272 B
PHP

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