Skip to content
Snippets Groups Projects
admin-metadatalist.php 3.84 KiB
Newer Older
<?php
$this->data['header'] = $this->t('metaover_header');
$this->data['icon'] = 'bino.png';

$this->includeAtTemplateBase('includes/header.php');
?>
		<p><?php echo $this->t('metaover_intro'); ?></p>
		function showEntry($t, $id) {

			if (!array_key_exists($id, $t->data)) {
				/* This metadata does not exist. */
				return;
			}


			$header = $t->t('metaover_group_' . $id);
			$list = $t->data[$id];
			$baseurl = $t->data['baseurlpath'];

			
				$encodedEntityID = preg_replace('/=/', '_', base64_encode($entityid . $header));
				$name = $entityid;
				if (isset($entity['optional.found']['name'])) $name = $entity['optional.found']['name'];

				//print_r($entity);
				
				$warning = false;
				if (count($entity['leftovers']) > 0) $warning = TRUE;
				if (count($entity['required.notfound']) > 0) $warning = TRUE;


				echo '<h4 style="padding-left: 2em; clear: both;" onclick="document.getElementById(\'metadatasection-' . $encodedEntityID . '\').style.display=\'block\';">' . htmlspecialchars($name) . '</h4>';
				
				if ($warning) {
					echo '<div><img src="/' . $baseurl . 'resources/icons/caution.png" style="float: left; margin-right: 1em" />';
					echo $t->t('metaover_errorentry') . '</div>';
				echo '<div id="metadatasection-' . $encodedEntityID . '" style="display: none">';
				if (isset($entity['optional.found']['description'])) {
					echo '<p>' . htmlspecialchars($entity['optional.found']['description']) . '</p>';
				echo '<div class="efieldlist"><h5>' . $t->t('metaover_required_found') . '</h5>';
				foreach ($entity['required.found'] AS $key => $value) {
					echo '<dt>' . htmlspecialchars($key) . '</dt><dd>' . htmlspecialchars(var_export($value, TRUE)) . '</dd>';
					echo '<h5>' . $t->t('metaover_required_not_found') . '</h5><ul>';
					foreach ($entity['required.notfound'] AS $key) {
					echo '<h5>' . $t->t('metaover_optional_found') . '</h5>';
					foreach ($entity['optional.found'] AS $key => $value) {
						echo '<dt>' . htmlspecialchars($key) . '</dt><dd>' . htmlspecialchars(var_export($value, TRUE)) . '</dd>';
					echo '<h5>' . $t->t('metaover_optional_not_found') . '</h5><ul>';
					foreach ($entity['optional.notfound'] AS $key) {
					echo '<h5>' . $t->t('metaover_unknown_found') . '</h5><ul>';
					foreach ($entity['leftovers'] AS $key => $value) {
		showEntry($this, 'metadata.saml20-sp-hosted');
		showEntry($this, 'metadata.saml20-sp-remote');
		showEntry($this, 'metadata.saml20-idp-hosted');
		showEntry($this, 'metadata.saml20-idp-remote');

		showEntry($this, 'metadata.shib13-sp-hosted');
		showEntry($this, 'metadata.shib13-sp-remote');
		showEntry($this, 'metadata.shib13-idp-hosted');
		showEntry($this, 'metadata.shib13-idp-remote');

		showEntry($this, 'metadata.wsfed-sp-hosted');
		showEntry($this, 'metadata.wsfed-idp-remote');
		
		?>

		
<?php $this->includeAtTemplateBase('includes/footer.php'); ?>