This commit is contained in:
ceb 2002-10-03 03:10:24 +00:00
parent d5202ca67c
commit 318c421ab7
2 changed files with 13 additions and 7 deletions

View File

@ -31,11 +31,12 @@
$data = array
(
'phpgw_logo' => $GLOBALS['phpgw']->common->get_image_path('phpgwapi'),
'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
'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
);
$tpl->set_var('about',$data);

View File

@ -3,14 +3,19 @@
<xsl:template match="about">
<table cellpadding="2" cellspacing="2" width="70%" align="center" class="portal">
<xsl:variable name="phpgw_logo"><xsl:value-of select="phpgw_logo"/></xsl:variable>
<xsl:variable name="lang_url_statustext"><xsl:value-of select="lang_url_statustext"/></xsl:variable>
<tr>
<td colspan="2">
<a href="http://www.phpgroupware.org" target="_blank"><img src="{$phpgw_logo}/logo.png" border="0"/></a>
<a href="http://www.phpgroupware.org" target="_blank" onMouseover="window.status='{$lang_url_statustext}'; return true;" onMouseout="window.status=''; return true;">
<img src="{$phpgw_logo}/logo.png" border="0" alt="{$lang_url_statustext}"/>
</a>
</td>
</tr>
<tr>
<td colspan="2">
<a href="http://www.phpgroupware.org" target="_blank">phpGroupWare </a>
<a href="http://www.phpgroupware.org" target="_blank" onMouseover="window.status='{$lang_url_statustext}'; return true;" onMouseout="window.status=''; return true;">
<xsl:text>phpGroupWare </xsl:text>
</a>
<xsl:value-of select="phpgw_descr"/>
</td>
</tr>