[Openfirst-cvscommit] base/config index.php,1.5,1.6
Brought to you by:
xtimg
From: <dav...@us...> - 2003-11-01 18:16:10
|
Update of /cvsroot/openfirst/base/config In directory sc8-pr-cvs1:/tmp/cvs-serv26184 Modified Files: index.php Log Message: Added a neat/organized table to view administrative options. Index: index.php =================================================================== RCS file: /cvsroot/openfirst/base/config/index.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** index.php 30 Aug 2003 18:26:07 -0000 1.5 --- index.php 1 Nov 2003 18:16:07 -0000 1.6 *************** *** 32,43 **** if(isset($user->user) == true && $user->membertype == "administrator") { ?> ! <h1>OpenFIRST Configuration Area</h1> ! <p><a href="version.php">Version Check</a> - ensure that your version of the openFIRST web portal ! software and any 3rd party extensions is up to date</p> ! <p><a href="install.php">Install Component</a> - required to install several new ! openFIRST modules.</p> ! <p><a href="modules.php">Module Administrator</a> - required to manage openFIRST ! modules.</p> ! <?php } else { showlogin(); --- 32,58 ---- if(isset($user->user) == true && $user->membertype == "administrator") { ?> ! <h1>openFIRST Configuration Area</h1> ! <table width="50%"> ! <tr> ! <th>Administrative Options</th> ! </tr> ! </table> ! <table width="50%"> ! <tr> ! <td width="30%" valign="top"><a href="version.php">Version Check</a></td> ! <td width="70%" valign="top">Ensure that your version of the openFIRST web ! portal software and any 3rd party extensions is up to date</td> ! </tr> ! <tr> ! <td valign="top"><a href="install.php">Install Component</a></td> ! <td valign="top">Required to install several new openFIRST modules.</td> ! </tr> ! <tr> ! <td valign="top"><a href="modules.php">Module Administrator</a></td> ! <td valign="top">Required to manage openFIRST modules.</td> ! </tr> ! </table> ! <p> ! <?php } else { showlogin(); *************** *** 45,46 **** --- 60,62 ---- include($footer); ?> + </p> |