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

18 lines
292 B
PHP
Executable file

<?php
namespace b8\Form\Element;
use b8\View;
class Email extends Text
{
public function render($viewFile = null)
{
return parent::render(($viewFile ? $viewFile : 'Text'));
}
protected function _onPreRender(View &$view)
{
parent::_onPreRender($view);
$view->type = 'email';
}
}