php-censor/src/B8Framework/Form/Element/Url.php
2017-01-14 16:12:53 +07:00

20 lines
324 B
PHP

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