home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2004 April
/
CMCD0404.ISO
/
Software
/
Freeware
/
Programare
/
groupoffice-com-2.01
/
about.php
next >
Wrap
PHP Script
|
2004-03-08
|
2KB
|
54 lines
<?php
/*
Copyright Intermesh 2003
Author: Merijn Schering <mschering@intermesh.nl>
Version: 1.0 Release date: 08 July 2003
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 2 of the License, or (at your
option) any later version.
*/
//////////////////////////////////////////////////////////////////////
////////////// PLEASE LEAVE THIS ABOUT PAGE INTACT ///////////////////
//////////////////////////////////////////////////////////////////////
require("Group-Office.php");
$GO_SECURITY->authenticate();
require($GO_LANGUAGE->get_language_file('about'));
$page_title = $menu_about;
require($GO_THEME->theme_path."header.inc");
if(file_exists('LICENSE.GPL'))
{
$license = 'LICENSE.GPL';
}else
{
$license = 'LICENSE.PRO';
}
?>
<table border="0" cellspacing="0" cellpadding="10">
<tr>
<td>
<h1>Group-Office <?php echo $GO_CONFIG->version; ?></h1>
<?php echo $about_text; ?><br /><br />
<table border="0">
<tr>
<td><a href="http://www.intermesh.nl" target="_blank"><img src="<?php echo $GO_THEME->images['Intermesh']; ?>" border="0" /></td>
<td><a href="http://www.apache.org" target="_blank"><img src="<?php echo $GO_THEME->images['apache_logo']; ?>" border="0"></a></td>
<td><a href="http://www.php.net" target="_blank"><img src="<?php echo $GO_THEME->images['php_logo']; ?>" border="0"></a></td>
<td><a href="http://www.mysql.com" target="_blank"><img src="<?php echo $GO_THEME->images['mysql_logo']; ?>" border="0"></a></td>
</tr>
</table>
<iframe style="width: 700; height: 250;" src="<?php echo $license; ?>"></iframe>
<br /><br /><b>Copyright Intermesh 2004</b>
</td>
</tr>
</table>
<?php
require($GO_THEME->theme_path."footer.inc");
?>