Source for file about.php

Documentation is available at about.php

  1. <?php
  2. /**
  3. * about.php
  4. *
  5. * An "about box" detailing SquirrelMail info.
  6. *
  7. * TODO:
  8. * - Insert org_name, provider_url?
  9. * - What more information is needed?
  10. * - Display of system information might be restricted
  11. *
  12. * @copyright 1999-2020 The SquirrelMail Project Team
  13. * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  14. * @version $Id: about.php 14845 2020年01月07日 08:09:34Z pdontthink $
  15. * @package squirrelmail
  16. */
  17. /** This is the about page */
  18. define ('PAGE_NAME', 'about');
  19. /**
  20. * Include the SquirrelMail initialization file.
  21. */
  22. require('../include/init.php');
  23. ?>
  24. <p align="center">
  25. <img src="../images/sm_logo.png" width="308" height="111"
  26. alt="SquirrelMail Logo" /><br />
  27. <table align="center" width="80%" cellpadding="1" cellspacing="2" border="0">
  28. <tr><td bgcolor="#dcdcdc" align="center"><div style="text-align: center;"><b>
  29. <?php echo sprintf (_ ("About SquirrelMail %s"), SM_VERSION ); ?>
  30. </b></div></td></tr>
  31. <tr><td>
  32. <br />
  33. <?php echo _ ("SquirrelMail is the name of the program that provides access to your email via the web."); ?>
  34. <br />
  35. <br />
  36. <strong>
  37. <?php
  38. // i18n: %s displays org_name variable value enclosed in () or empty string.
  39. echo sprintf (_ ("If you have questions about or problems with your mail account, passwords, abuse etc, please refer to your system administrator or provider%s."),( $org_name != 'SquirrelMail' ? ' (' . $org_name . ')':''));
  40. echo "</strong>\n";
  41. // i18n: %s tags are used in order to remove html URL attributes from translation
  42. echo sprintf (_ ("They can assist you adequately with these issues. The SquirrelMail Project Team cannot help you with that. The %shelp system%s provides answers to frequently asked questions."),'<a href="help.php">','</a>');
  43. echo "<br />\n<br />\n";
  44. // i18n: %s tags are used in order to remove html URL attributes from translation
  45. echo sprintf (_ ("SquirrelMail is a feature rich, standards compliant webmail application written in PHP. It was made by a group of volunteers united in the SquirrelMail Project Team and is released as open source, free software under the %sGNU General Public License%s."),'<a href="http://www.gnu.org/copyleft/gpl.html" target="_blank">','</a>');
  46. // add space between two sentences.
  47. // Don't want to join two sprintf strings.
  48. echo ' ';
  49. // i18n: %s tags are used in order to remove html URL attributes from translation
  50. echo sprintf (_ ("For more information about SquirrelMail and the SquirrelMail Project Team, see %sthe SquirrelMail website%s."),'<a href="http://squirrelmail.org/" target="_blank">','</a>');
  51. ?>
  52. <br />
  53. <br /><br />
  54. <b>
  55. <?php echo _ ("System information"); ?>
  56. </b><br/><br/>
  57. <small>
  58. <?php
  59. echo sprintf (_ ("You are using SquirrelMail version: %s"), SM_VERSION );
  60. echo "<br />\n";
  61. echo _ ("The administrator installed the following plugins:");
  62. echo "<br />\n";
  63. if ( isset($plugins) && count ($plugins) > 0 ) {
  64. sort ($plugins);
  65. echo "<ul>\n";
  66. foreach($plugins as $plugin) {
  67. echo "<li>" . $plugin . "</li>\n";
  68. }
  69. echo "</ul>\n\n";
  70. } else {
  71. echo '<em>'._ ("none installed")."</em>\n\n";
  72. }
  73. ?>
  74. </small>
  75. <br /><br />
  76. </td></tr>
  77. <tr><td align="center">&copy; <?php echo SM_COPYRIGHT ?> The SquirrelMail Project Team</td></tr>
  78. </table></p>
  79. <?php
  80. $oTemplate->display('footer.tpl');

Documentation generated on 2020年1月13日 04:21:57 +0100 by phpDocumentor 1.4.3

AltStyle によって変換されたページ (->オリジナル) /