Horde_Core_Ui_VarRenderer_Html::_renderVarInput_passwordconfirm PHP 메소드

_renderVarInput_passwordconfirm() 보호된 메소드

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