data)) { $this->data['header'] = 'selectidp'; } $this->data['header'] = $this->t($this->data['header']); $this->data['autofocus'] = 'preferredidp'; $this->includeAtTemplateBase('includes/header.php'); foreach ($this->data['idplist'] as $idpentry) { if (isset($idpentry['name'])) { $this->getTranslator()->includeInlineTranslation('idpname_'.$idpentry['entityid'], $idpentry['name']); } elseif (isset($idpentry['OrganizationDisplayName'])) { $this->getTranslator()->includeInlineTranslation( 'idpname_'.$idpentry['entityid'], $idpentry['OrganizationDisplayName'] ); } if (isset($idpentry['description'])) { $this->getTranslator()->includeInlineTranslation('idpdesc_'.$idpentry['entityid'], $idpentry['description']); } } ?>

data['header']; ?>

t('selectidp_full'); if ($this->data['rememberenabled']) { echo '
'. $this->t('remember'); } ?>

data['preferredidp']) && array_key_exists($this->data['preferredidp'], $this->data['idplist']) ) { $idpentry = $this->data['idplist'][$this->data['preferredidp']]; echo '
'; echo ' '.
                $this->t('icon_prefered_idp').''; if (array_key_exists('icon', $idpentry) && $idpentry['icon'] !== null) { $iconUrl = \SimpleSAML\Utils\HTTP::resolveURL($idpentry['icon']); echo ''; } echo "\n".'

'. htmlspecialchars($this->t('idpname_'.$idpentry['entityid'])).'

'; if (!empty($idpentry['description'])) { echo '

'.htmlspecialchars($this->t('idpdesc_'.$idpentry['entityid'])).'
'; } echo('

'); echo '
'; } foreach ($this->data['idplist'] as $idpentry) { if ($idpentry['entityid'] != $this->data['preferredidp']) { if (array_key_exists('icon', $idpentry) && $idpentry['icon'] !== null) { $iconUrl = \SimpleSAML\Utils\HTTP::resolveURL($idpentry['icon']); echo ''; } echo "\n".'

'.htmlspecialchars($this->t('idpname_'.$idpentry['entityid'])); echo '

'; if (!empty($idpentry['description'])) { echo '

'.htmlspecialchars($this->t('idpdesc_'.$idpentry['entityid'])).'
'; } echo '

'; } } ?>
includeAtTemplateBase('includes/footer.php');