_getInfo($name, $value, $attribs); extract($info); // name, id, value, attribs, options, listsep, disable /** @var string $id */ /** @var bool $disable */ $disabled = ''; if ($disable) { $disabled = ' disabled="disabled"'; } /** @var \Icinga\Web\View $view */ $view = $this->view; $html5 = sprintf( 'escape($name), $view->escape($id), $view->escape($value), $disabled, $this->_htmlAttribs($attribs), $this->getClosingBracket() ); return $html5; } }