/** * Get a complete html document that will autosubmit the request * to the IDP. * * Wraps formMarkup. See the documentation for that function. */ function htmlMarkup($realm, $return_to = null, $immediate = false, $form_tag_attrs = null) { $form = $this->formMarkup($realm, $return_to, $immediate, $form_tag_attrs); if (Auth_OpenID::isFailure($form)) { return $form; } return Auth_OpenID::autoSubmitHTML($form); }
function toHTML() { return Auth_OpenID::autoSubmitHTML($this->toFormMarkup()); }
/** * Return a html document that will autosubmit the request to the IDP. * * @return string */ function autoSubmitHTML() { return Auth_OpenID::autoSubmitHTML($this->getSubmitForm("Continue")); }