php-censor/src/B8Framework/Form/Element/Email.php

18 lines
292 B
PHP
Raw Normal View History

2016-04-12 19:31:39 +02:00
<?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';
}
}