2000-12-23 01:45:58 +01:00
|
|
|
<?php
|
2003-08-28 16:16:30 +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';
|
2003-08-28 16:16:30 +02:00
|
|
|
$GLOBALS['phpgw_info']['flags']['disable_Template_class'] = True;
|
|
|
|
$GLOBALS['phpgw_info']['flags']['noheader'] = True;
|
2001-09-26 00:55:33 +02:00
|
|
|
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'];
|
2003-08-28 16:16:30 +02:00
|
|
|
if ($app)
|
|
|
|
{
|
|
|
|
if (!($included = $GLOBALS['phpgw']->hooks->single('about',$app)))
|
|
|
|
{
|
|
|
|
function about_app()
|
|
|
|
{
|
|
|
|
global $app;
|
|
|
|
$icon = $GLOBALS['phpgw']->common->image($app,'navbar.gif');
|
|
|
|
include (PHPGW_INCLUDE_ROOT . "/$app/setup/setup.inc.php");
|
|
|
|
$info = $setup_info[$app];
|
|
|
|
$info['title'] = $GLOBALS['phpgw_info']['apps'][$app]['title'];
|
|
|
|
$other_infos = array(
|
|
|
|
'author' => lang('Author'),
|
|
|
|
'maintainer' => lang('Maintainer'),
|
|
|
|
'version' => lang('Version'),
|
|
|
|
'license' => lang('License')
|
|
|
|
);
|
2002-10-03 04:49:22 +02:00
|
|
|
|
2003-08-28 16:16:30 +02:00
|
|
|
$s = "<table width='70%' cellpadding='4'>\n<tr><td align='right'><img src='$icon'></td><td align='left'><b>$info[title]</b></td></tr>";
|
|
|
|
|
|
|
|
if ($info['description'])
|
2001-04-08 09:50:20 +02:00
|
|
|
{
|
2003-08-28 16:16:30 +02:00
|
|
|
$info['description'] = lang($info['description']);
|
|
|
|
$s .= "<tr><td colspan='2' align='center'>$info[description]</td></tr>\n";
|
|
|
|
if ($info['note'])
|
|
|
|
{
|
|
|
|
$info['note'] = lang($info['note']);
|
|
|
|
$s .= "<tr><td colspan='2' align='center'><i>$info[note]</i></td></tr>\n";
|
|
|
|
}
|
2001-04-08 09:50:20 +02:00
|
|
|
}
|
2003-08-28 16:16:30 +02:00
|
|
|
foreach ($other_infos as $key => $val)
|
2002-10-27 20:10:45 +01:00
|
|
|
{
|
2003-08-28 16:16:30 +02:00
|
|
|
if (isset($info[$key]))
|
2002-10-27 20:10:45 +01:00
|
|
|
{
|
2003-08-28 16:16:30 +02:00
|
|
|
$s .= "<tr><td width='50%' align='right'>$val</td><td>";
|
|
|
|
$infos = $info[$key];
|
|
|
|
for ($n = 0; is_array($info[$key][$n]) && ($infos = $info[$key][$n]) || !$n; ++$n)
|
2002-10-28 00:56:10 +01:00
|
|
|
{
|
2003-08-28 16:16:30 +02:00
|
|
|
if (!is_array($infos) && isset($info[$key.'_email']))
|
|
|
|
{
|
|
|
|
$infos = array('email' => $info[$key.'_email'],'name' => $infos);
|
|
|
|
}
|
|
|
|
if (is_array($infos))
|
|
|
|
{
|
|
|
|
$names = explode('<br>',$infos['name']);
|
|
|
|
$emails = split('@|<br>',$infos['email']);
|
|
|
|
if (count($names) < count($emails)/2)
|
|
|
|
{
|
|
|
|
$names = '';
|
|
|
|
}
|
|
|
|
$infos = '';
|
|
|
|
while (list($user,$domain) = $emails)
|
|
|
|
{
|
|
|
|
if ($infos) $infos .= '<br>';
|
|
|
|
$name = $names ? array_shift($names) : $user;
|
|
|
|
$infos .= "<a href='mailto:$user at $domain' onClick=\"document.location='mailto:$user'+'@'+'$domain'; return false;\">$name</a>";
|
|
|
|
array_shift($emails); array_shift($emails);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$s .= ($n ? '<br>' : '') . $infos;
|
2002-10-28 00:56:10 +01:00
|
|
|
}
|
2003-08-28 16:16:30 +02:00
|
|
|
$s .= "</td></tr>\n";
|
2002-10-27 20:10:45 +01:00
|
|
|
}
|
2003-08-28 16:16:30 +02:00
|
|
|
}
|
|
|
|
$s .= "</table>\n";
|
2002-10-28 02:31:33 +01:00
|
|
|
|
2003-08-28 16:16:30 +02:00
|
|
|
return $s;
|
|
|
|
}
|
|
|
|
$api_only = !($included = file_exists(PHPGW_INCLUDE_ROOT . "/$app/setup/setup.inc.php"));
|
2002-10-28 02:31:33 +01:00
|
|
|
}
|
2002-10-27 20:10:45 +01:00
|
|
|
}
|
2003-08-28 16:16:30 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
$api_only = True;
|
|
|
|
}
|
2002-10-27 22:30:53 +01:00
|
|
|
|
2003-08-28 16:16:30 +02:00
|
|
|
$tpl = CreateObject('phpgwapi.Template',$GLOBALS['phpgw']->common->get_tpl_dir('phpgwapi'));
|
|
|
|
$tpl->set_file(array(
|
|
|
|
'phpgw_about' => 'about.tpl',
|
|
|
|
'phpgw_about_unknown' => 'about_unknown.tpl'
|
|
|
|
));
|
|
|
|
|
|
|
|
$tpl->set_var('webserver_url',$GLOBALS['phpgw']->common->get_image_path('phpgwapi'));
|
|
|
|
$tpl->set_var('phpgw_version','phpGroupWare API version ' . $GLOBALS['phpgw_info']['server']['versions']['phpgwapi']);
|
|
|
|
if ($included)
|
|
|
|
{
|
|
|
|
$tpl->set_var('phpgw_app_about',about_app('',''));
|
|
|
|
//about_app($tpl,"phpgw_app_about");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ($api_only)
|
|
|
|
{
|
|
|
|
$tpl->set_var('phpgw_app_about','');
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$tpl->set_var('app_header',$app);
|
|
|
|
$tpl->parse('phpgw_app_about','phpgw_about_unknown');
|
|
|
|
}
|
|
|
|
}
|
2002-10-03 04:49:22 +02:00
|
|
|
|
2003-08-28 16:16:30 +02:00
|
|
|
$title = isset($GLOBALS['phpgw_info']['apps'][$app]) ? $GLOBALS['phpgw_info']['apps'][$app]['title'] : 'phpGroupWare';
|
|
|
|
$GLOBALS['phpgw_info']['flags']['app_header'] = lang('About %1',$title);
|
|
|
|
$GLOBALS['phpgw']->common->phpgw_header();
|
|
|
|
$tpl->pparse('out','phpgw_about');
|
|
|
|
$GLOBALS['phpgw']->common->phpgw_footer();
|
2001-04-08 09:50:20 +02:00
|
|
|
?>
|