2000-12-23 01:45:58 +01:00
|
|
|
<?php
|
2002-10-03 04:49:22 +02:00
|
|
|
/**************************************************************************\
|
|
|
|
* phpGroupWare *
|
|
|
|
* 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$ */
|
2000-12-23 01:45:58 +01:00
|
|
|
|
2001-12-05 17:19:12 +01:00
|
|
|
$GLOBALS['phpgw_info'] = array();
|
2001-09-26 00:55:33 +02:00
|
|
|
$GLOBALS['phpgw_info']['flags']['currentapp'] = 'about';
|
|
|
|
include('header.inc.php');
|
2000-12-23 01:45:58 +01:00
|
|
|
|
2001-09-26 00:55:33 +02:00
|
|
|
$app = $HTTP_GET_VARS['app'];
|
2002-10-03 04:49:22 +02:00
|
|
|
|
2001-04-08 09:50:20 +02:00
|
|
|
if ($app)
|
|
|
|
{
|
2002-01-02 15:33:05 +01:00
|
|
|
$included = $GLOBALS['phpgw']->hooks->single('about',$app);
|
2001-04-08 09:50:20 +02:00
|
|
|
}
|
2000-12-23 01:45:58 +01:00
|
|
|
|
2002-10-04 01:16:08 +02:00
|
|
|
$GLOBALS['phpgw']->xslttpl->add_file(array('about'));
|
2000-12-23 01:45:58 +01:00
|
|
|
|
2001-04-08 09:50:20 +02:00
|
|
|
if ($included)
|
|
|
|
{
|
2002-10-03 04:49:22 +02:00
|
|
|
$app_data = about_app();
|
2001-04-08 09:50:20 +02:00
|
|
|
}
|
2001-02-04 12:08:53 +01:00
|
|
|
|
2002-10-03 04:49:22 +02:00
|
|
|
$data = array
|
|
|
|
(
|
2002-10-03 05:10:24 +02:00
|
|
|
'phpgw_logo' => $GLOBALS['phpgw']->common->get_image_path('phpgwapi'),
|
|
|
|
'lang_url_statustext' => lang('phpGroupWare homepage'),
|
|
|
|
'lang_version' => lang('version'),
|
|
|
|
'phpgw_version' => 'phpGroupWare API ' . $GLOBALS['phpgw_info']['server']['versions']['phpgwapi'],
|
|
|
|
'phpgw_descr' => lang('is a multi-user, web-based groupware suite written in PHP'),
|
|
|
|
'about_app' => $app_data
|
2002-10-03 04:49:22 +02:00
|
|
|
);
|
|
|
|
|
2002-10-26 02:33:22 +02:00
|
|
|
$GLOBALS['phpgw']->xslttpl->set_var('phpgw',array('about_data' => $data));
|
|
|
|
//$GLOBALS['phpgw']->xslttpl->pparse();
|
2001-04-08 09:50:20 +02:00
|
|
|
?>
|