Ip\Form\Field\Time::render PHP Метод

render() публичный Метод

Render field
public render ( string $doctype, $environment ) : string
$doctype string
$environment
Результат string
    public function render($doctype, $environment)
    {
        return '<input ' . $this->getAttributesStr($doctype) . ' class="form-control ' . implode(' ', $this->getClasses()) . '" name="' . htmlspecialchars($this->getName()) . '" ' . $this->getValidationAttributesStr($doctype) . ' type="time" value="' . htmlspecialchars($this->getValue()) . '" />';
    }