adding phpdoc blocks to sqimap_mailbox_list function
[squirrelmail.git] / src / about.php
... / ...
CommitLineData
1<?php
2
3/**
4 * about.php
5 *
6 * Copyright (c) 1999-2005 The SquirrelMail Project Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * An "about box" detailing SquirrelMail info.
10 *
11 * TODO:
12 * - Add localisation
13 * - Insert org_name, provider_url?
14 * - What more information is needed?
15 *
16 * @version $Id$
17 * @package squirrelmail
18 */
19
20/**
21 * Path for SquirrelMail required files.
22 * @ignore
23 */
24define('SM_PATH','../');
25
26/* SquirrelMail required files. */
27require_once(SM_PATH . 'include/validate.php');
28require_once(SM_PATH . 'functions/global.php');
29
30displayPageHeader($color, 'None' );
31
32?>
33<p align="center">
34<img src="../images/sm_logo.png" width="308" height="111"
35 alt="SquirrelMail Logo" /><br />
36<table align="center" width="80%" cellpadding="1" cellspacing="2" border="0">
37<tr><td bgcolor="#dcdcdc" align="center"><center><b>About SquirrelMail <?php echo $version; ?></b></center></td></tr>
38<tr><td>
39<br />
40SquirrelMail is the name of the program that provides access to your email via the web.<br />
41<br />
42<strong>If you have questions about or problems with your mailaccount, passwords, abuse etc,
43please refer to your system administrator or provider <?php
44if ( $org_name != 'SquirrelMail' ) {
45 echo '(' . $org_name . ')';
46}
47?>.</strong>
48They can assist you adequately with these issues. The SquirrelMail development team
49cannot help you with that. The <a href="help.php">help system</a> provides answers
50to frequently asked questions.<br />
51<br />
52SquirrelMail is a feature rich, standards compliant webmail application written in PHP.
53It was made by a group of volunteers united in the SquirrelMail Development Team and is
54released as open source, free software under the <a href="http://www.gnu.org/copyleft/gpl.html"
55target="_blank">GNU General Public License</a>.
56For more information about SquirrelMail and the SquirrelMail development team, see
57<a href="http://www.squirrelmail.org/" target="_blank">the SquirrelMail website</a>.<br />
58<br /><br />
59<b>System information</b><br/><br/>
60<small>
61You are using SquirrelMail version: <?php echo $version; ?><br />
62The administrator installed the following plugins:<br />
63<?php
64if ( count ($plugins) > 0 ) {
65 sort($plugins);
66 echo "<ul>\n";
67 foreach($plugins as $plugin) {
68 echo "<li>" . $plugin . "</li>\n";
69 }
70 echo "</ul>\n\n";
71} else {
72 echo "<em>none installed</em>\n\n";
73}
74?>
75</small>
76<br /><br />
77</td></tr>
78<tr><td align="center">&copy; 1999 - 2005 The SquirrelMail Development Team</td></tr>
79</table></p>
80
81
82
83</body></html>