From 9f6e466037e9d0646e33fafb46489d67b2620101 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Andreas=20=C3=85kre=20Solberg?= <andreas.solberg@uninett.no>
Date: Fri, 9 Jan 2009 13:10:08 +0000
Subject: [PATCH] Added support for presenting jpegPhoto in consent module...

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1118 44740490-163a-0410-bde0-09ae8108e29a
---
 modules/consent/templates/default/consentform.php | 7 ++++++-
 modules/consent/www/style.css                     | 5 ++++-
 2 files changed, 10 insertions(+), 2 deletions(-)

diff --git a/modules/consent/templates/default/consentform.php b/modules/consent/templates/default/consentform.php
index f8cd4482a..5fcefbe51 100644
--- a/modules/consent/templates/default/consentform.php
+++ b/modules/consent/templates/default/consentform.php
@@ -206,7 +206,12 @@ foreach ($this->data['noData'] as $name => $value) {
 					}
 					$str .= '</ul></td></tr>';
 				} elseif(isset($value[0])) {
-					$str .= '<tr class="' . $alternate[($i++ % 2)] . '"><td class="attrname">' . htmlspecialchars($name) . '</td><td class="attrvalue">' . htmlspecialchars($value[0]) . '</td></tr>';
+					$str .= '<tr class="' . $alternate[($i++ % 2)] . '"><td class="attrname">' . htmlspecialchars($name) . '</td>';
+					if ($nameraw === 'jpegPhoto') {
+						$str .= '<td class="attrvalue"><img src="data:image/jpeg;base64,' . htmlspecialchars($value[0]) . '" /></td></tr>';
+					} else {
+						$str .= '<td class="attrvalue">' . htmlspecialchars($value[0]) . '</td></tr>';
+					}
 				}
 			}
 			$str .= "\n";
diff --git a/modules/consent/www/style.css b/modules/consent/www/style.css
index 62052a6bb..78278b172 100644
--- a/modules/consent/www/style.css
+++ b/modules/consent/www/style.css
@@ -54,4 +54,7 @@ table.attributes tr td {
 table#table_with_attributes tr:last-child td {
 	border-bottom: none;
 }
-
+td.attrvalue img {
+	border: 1px solid #777;
+	margin: 4px;
+}
-- 
GitLab