home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Freeware / Programare / groupoffice-com-2.01 / about.php next >
PHP Script  |  2004-03-08  |  2KB  |  54 lines

  1. <?php
  2. /*
  3. Copyright Intermesh 2003
  4. Author: Merijn Schering <mschering@intermesh.nl>
  5. Version: 1.0 Release date: 08 July 2003
  6.  
  7. This program is free software; you can redistribute it and/or modify it
  8. under the terms of the GNU General Public License as published by the
  9. Free Software Foundation; either version 2 of the License, or (at your
  10. option) any later version.
  11. */
  12.  
  13. //////////////////////////////////////////////////////////////////////
  14. ////////////// PLEASE LEAVE THIS ABOUT PAGE INTACT ///////////////////
  15. //////////////////////////////////////////////////////////////////////
  16.  
  17. require("Group-Office.php");
  18. $GO_SECURITY->authenticate();
  19. require($GO_LANGUAGE->get_language_file('about'));
  20. $page_title = $menu_about;
  21. require($GO_THEME->theme_path."header.inc");
  22.  
  23. if(file_exists('LICENSE.GPL'))
  24. {
  25.     $license = 'LICENSE.GPL';
  26. }else
  27. {
  28.     $license = 'LICENSE.PRO';
  29. }
  30. ?>
  31.  
  32.  
  33. <table border="0" cellspacing="0" cellpadding="10">
  34. <tr>
  35.     <td>
  36.     <h1>Group-Office <?php echo $GO_CONFIG->version; ?></h1>
  37.     <?php echo $about_text; ?><br /><br />
  38.     <table border="0">
  39.     <tr>
  40.         <td><a href="http://www.intermesh.nl" target="_blank"><img src="<?php echo $GO_THEME->images['Intermesh']; ?>" border="0" /></td>
  41.         <td><a href="http://www.apache.org" target="_blank"><img src="<?php echo $GO_THEME->images['apache_logo']; ?>" border="0"></a></td>
  42.         <td><a href="http://www.php.net" target="_blank"><img src="<?php echo $GO_THEME->images['php_logo']; ?>" border="0"></a></td>
  43.         <td><a href="http://www.mysql.com" target="_blank"><img src="<?php echo $GO_THEME->images['mysql_logo']; ?>" border="0"></a></td>
  44.     </tr>
  45.     </table>
  46.     <iframe style="width: 700; height: 250;" src="<?php echo $license; ?>"></iframe>
  47.     <br /><br /><b>Copyright Intermesh 2004</b>
  48.     </td>
  49. </tr>
  50. </table>
  51. <?php
  52. require($GO_THEME->theme_path."footer.inc");
  53. ?>
  54.