2001-05-08 03:17:31 +02:00
|
|
|
<?php
|
|
|
|
/**************************************************************************\
|
|
|
|
* phpGroupWare - User manual *
|
|
|
|
* http://www.phpgroupware.org *
|
|
|
|
* -------------------------------------------- *
|
|
|
|
* 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. *
|
|
|
|
\**************************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
2001-05-10 05:18:58 +02:00
|
|
|
|
2001-05-08 03:17:31 +02:00
|
|
|
$phpgw_flags = Array(
|
|
|
|
'currentapp' => 'manual'
|
|
|
|
);
|
|
|
|
$phpgw_info['flags'] = $phpgw_flags;
|
|
|
|
include('../../header.inc.php');
|
2001-05-10 05:18:58 +02:00
|
|
|
$appname = 'calendar';
|
2001-06-08 05:25:28 +02:00
|
|
|
include(PHPGW_SERVER_ROOT.'/'.$appname.'/setup/setup.inc.php');
|
2001-05-08 03:17:31 +02:00
|
|
|
?>
|
2001-05-10 05:18:58 +02:00
|
|
|
<img src="<?php echo $phpgw->common->image($appname,'navbar.gif'); ?>" border="0"><p/>
|
2001-05-08 03:17:31 +02:00
|
|
|
<font face="<?php echo $phpgw_info['theme']['font']; ?>" size="2">
|
2001-06-08 05:25:28 +02:00
|
|
|
Version: <b><?php echo $setup_info[$appname]['version']; ?></b><p/>
|
2001-05-10 05:18:58 +02:00
|
|
|
This app was based on <a href="http://webcalendar.sourceforge.net" target="_new">WebCalendar</a><br/><p/>
|
|
|
|
Transformed by <a href="<?php echo $phpgw->link('/email/compose.php','to=skeeter@phpgroupware.org'); ?>" target="_new">Mark A Peters (Skeeter)</a><br/>
|
2001-05-08 03:17:31 +02:00
|
|
|
</font>
|
2001-05-10 05:18:58 +02:00
|
|
|
<?php $phpgw->common->phpgw_footer(); ?>
|