From 9bd6623a95208adb42237ed1b74a669f46f8f7b2 Mon Sep 17 00:00:00 2001
From: Olav Morken <olav.morken@uninett.no>
Date: Tue, 10 Jun 2008 12:48:51 +0000
Subject: [PATCH] Added some config to the front page.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@625 44740490-163a-0410-bde0-09ae8108e29a
---
 www/index.php | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/www/index.php b/www/index.php
index ea431fcbd..eb9560f86 100644
--- a/www/index.php
+++ b/www/index.php
@@ -159,6 +159,31 @@ foreach ($functionchecks AS $func => $descr) {
 }
 
 
+/* Some basic configuration checks */
+
+if($config->getValue('technicalcontact_email', 'na@example.org') === 'na@example.org') {
+	$mail_ok = FALSE;
+} else {
+	$mail_ok = TRUE;
+}
+$funcmatrix[] = array(
+	'required' => 'reccomended',
+	'descr' => 'technicalcontact_email option set',
+	'enabled' => $mail_ok
+	);
+if($config->getValue('auth.adminpassword', '123') === '123') {
+	$password_ok = FALSE;
+} else {
+	$password_ok = TRUE;
+}
+$funcmatrix[] = array(
+	'required' => 'required',
+	'descr' => 'auth.adminpassword option set',
+	'enabled' => $password_ok
+	);
+
+
+
 $t = new SimpleSAML_XHTML_Template($config, 'frontpage.php', 'frontpage.php');
 $t->data['header'] = 'simpleSAMLphp installation page';
 $t->data['icon'] = 'compass_l.png';
-- 
GitLab