Horde_Core_Ui_VarRenderer_Html::_renderVarInput_emailconfirm PHP Méthode

_renderVarInput_emailconfirm() protected méthode

protected _renderVarInput_emailconfirm ( $form, &$var, &$vars )
    protected function _renderVarInput_emailconfirm($form, &$var, &$vars)
    {
        $email = $var->getValue($vars);
        return sprintf('<input type="email" name="%s[original]" id="%s_original" value="%s"%s />', htmlspecialchars($var->getVarName()), $this->_genID($var->getVarName(), false), htmlspecialchars($email['original']), $this->_getActionScripts($form, $var)) . ' ' . sprintf('<input type="email" name="%s[confirm]" id="%s_confirm" value="%s"%s />', htmlspecialchars($var->getVarName()), $this->_genID($var->getVarName(), false), htmlspecialchars($email['confirm']), $this->_getActionScripts($form, $var));
    }
Horde_Core_Ui_VarRenderer_Html