php-censor/src/B8Framework/Form/Element/Text.php
2016-06-23 21:18:41 +06:00

14 lines
199 B
PHP
Executable file

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