Values (compatibility with the new version) */ public function getValues() { $values = array(); $values['sp'] = array(); $values['sp']['entityId'] = $this->spIssuer; $values['sp']['assertionConsumerService'] = array( 'url' => $this->spReturnUrl, ); $values['sp']['NameIDFormat'] = $this->requestedNameIdFormat; $values['idp'] = array(); $values['idp']['entityId'] = $this->idpSingleSignOnUrl; $values['idp']['singleSignOnService'] = array( 'url' => $this->idpSingleSignOnUrl, ); $values['idp']['singleLogoutService'] = array( 'url' => $this->idpSingleLogOutUrl, ); $values['idp']['x509cert'] = $this->idpPublicCertificate; return $values; } }