make changes to include the template setup.inc.php file, fix icon app image in about, some lay-out improvements in about

This commit is contained in:
Pim Snel 2005-06-29 21:05:30 +00:00
parent a8959cc19b
commit cd27f2cca3
2 changed files with 24 additions and 26 deletions

View File

@ -25,20 +25,10 @@
$GLOBALS['phpgw_info']['flags']['noheader'] = True; $GLOBALS['phpgw_info']['flags']['noheader'] = True;
include('header.inc.php'); include('header.inc.php');
if ($app) if ($app)
{ {
if (!($included = $GLOBALS['phpgw']->hooks->single('about',$app))) if (!($included = $GLOBALS['phpgw']->hooks->single('about',$app)))
{ {
function about_app()
{
global $app;
$icon = $GLOBALS['phpgw']->common->image($app,array('navbar','nonav'));
include (PHPGW_INCLUDE_ROOT . "/$app/setup/setup.inc.php");
$info = $setup_info[$app];
$info['title'] = $GLOBALS['phpgw_info']['apps'][$app]['title'];
return about_display($info);
}
$api_only = !($included = file_exists(PHPGW_INCLUDE_ROOT . "/$app/setup/setup.inc.php")); $api_only = !($included = file_exists(PHPGW_INCLUDE_ROOT . "/$app/setup/setup.inc.php"));
} }
} }
@ -90,13 +80,23 @@
$GLOBALS['phpgw']->common->phpgw_footer(); $GLOBALS['phpgw']->common->phpgw_footer();
function about_app()
{
global $app;
include (PHPGW_INCLUDE_ROOT . "/$app/setup/setup.inc.php");
$info = $setup_info[$app];
$info['icon'] = $GLOBALS['phpgw']->common->image($app,array('navbar','nonav'));
$info['title'] = $GLOBALS['phpgw_info']['apps'][$app]['title'];
return about_display($info);
}
function about_template() function about_template()
{ {
$template = $GLOBALS['phpgw']->common->get_tpl_dir('phpgwapi'); $template = $GLOBALS['phpgw']->common->get_tpl_dir('phpgwapi');
include ($template . "/settings/settings.inc.php"); include ($template . "/setup/setup.inc.php");
$s = ""; $s = "";
$template_info[] = $GLOBALS['egw_info']['template'][$GLOBALS['phpgw_info']['user']['preferences']['common']['template_set']];
foreach($template_info as $info) foreach($template_info as $info)
{ {
$s .= about_display($info); $s .= about_display($info);

View File

@ -70,22 +70,20 @@
); );
include('./header.inc.php'); include('./header.inc.php');
// Check if we are using windows or normal webpage
// Check if we are using windows or normal webpage
$windowed = false; $windowed = false;
$settings = PHPGW_SERVER_ROOT . '/phpgwapi/templates/' . $GLOBALS['phpgw_info']['user']['preferences']['common']['template_set'] . '/settings/settings.inc.php'; $tpl_info = PHPGW_SERVER_ROOT . '/phpgwapi/templates/' . $GLOBALS['phpgw_info']['user']['preferences']['common']['template_set'] . '/setup/setup.inc.php';
if(@file_exists($settings)) if(@file_exists($tpl_info))
{ {
include_once($tpl_info);
include($settings); // if(isset($template_info))
if(isset($template_info)) { // {
if($template_info['idots2']['windowed']) if($GLOBALS['egw_info']['template'][$GLOBALS['phpgw_info']['user']['preferences']['common']['template_set']]['windowed'])
{ {
$windowed = true; $windowed = true;
}
} // }
}
} }