moved manual to the top menubar

This commit is contained in:
ceb 2002-11-15 23:43:20 +00:00
parent 1483360a0e
commit 92d9a97614
24 changed files with 18 additions and 8 deletions

View File

@ -1162,17 +1162,19 @@ if (!@is_file(PHPGW_SERVER_ROOT . '/phpgwapi/templates/' . $GLOBALS['phpgw_info'
$app = $GLOBALS['phpgw_info']['flags']['currentapp'];
$var['logo_img'] = $this->image('phpgwapi','logo');
$var['home_img'] = $this->image('phpgwapi','welcome-'.($app=='home' ? 'red' : 'grey'));
$var['prefs_img'] = $this->image('phpgwapi','preferences-'.($app=='preferences' ? 'red' : 'grey'));
$var['prefs_img'] = $this->image('preferences','preferences-'.($app=='preferences' ? 'red' : 'grey'));
$var['logout_img'] = $this->image('phpgwapi','logout-grey');
$var['about_img'] = $this->image('phpgwapi','help');
$var['manual_img'] = $this->image('manual','help');
$var['greybar'] = $this->image('phpgwapi','greybar');
break;
case 'justweb':
$var['logo_img'] = $this->image('phpgwapi','logo');
$var['home_img'] = $this->image('phpgwapi','tab_home');
$var['prefs_img'] = $this->image('phpgwapi','tab_prefs');
$var['prefs_img'] = $this->image('preferences','tab_prefs');
$var['logout_img'] = $this->image('phpgwapi','tab_logout');
$var['about_img'] = $this->image('phpgwapi','tab_help');
$var['manual_img'] = $this->image('manual','tab_manual');
break;
case 'funkwerk':
$var['about_img'] = '!';
@ -1430,7 +1432,7 @@ if (!@is_file(PHPGW_SERVER_ROOT . '/phpgwapi/templates/' . $GLOBALS['phpgw_info'
}
/* We handle this here becuase its special */
$GLOBALS['phpgw_info']['navbar']['about']['title'] = lang('about x',$app);
$GLOBALS['phpgw_info']['navbar']['about']['title'] = lang('about x',lang($app));
$GLOBALS['phpgw_info']['navbar']['about']['url'] = $GLOBALS['phpgw']->link('/about.php','app='.$app);
$GLOBALS['phpgw_info']['navbar']['about']['icon'] = $this->image('phpgwapi',Array('about','nonav'));
$GLOBALS['phpgw_info']['navbar']['about']['icon_hover'] = $this->image_on('phpgwapi',Array('about','nonav'),'-over');

View File

@ -1,4 +1,4 @@
about common en about
about x common en about %1
access common en Access
access not permitted common en Access not permitted
acl common en ACL

View File

@ -9,14 +9,17 @@
<xsl:variable name="prefs_link" select="prefs_link"/>
<xsl:variable name="logout_link" select="logout_link"/>
<xsl:variable name="about_link" select="about_link"/>
<xsl:variable name="manual_link" select="manual_link"/>
<xsl:variable name="home_img" select="home_img"/>
<xsl:variable name="prefs_img" select="prefs_img"/>
<xsl:variable name="logout_img" select="logout_img"/>
<xsl:variable name="about_img" select="about_img"/>
<xsl:variable name="manual_img" select="manual_img"/>
<xsl:variable name="home_title" select="home_title"/>
<xsl:variable name="prefs_title" select="prefs_title"/>
<xsl:variable name="logout_title" select="logout_title"/>
<xsl:variable name="about_title" select="about_title"/>
<xsl:variable name="manual_title" select="manual_title"/>
<xsl:variable name="navbar_format" select="navbar_format"/>
<xsl:variable name="app_tpl" select="app_tpl"/>
<html>
@ -81,6 +84,7 @@
<td><a href="{$prefs_link}" onMouseOver="" onMouseOut=""><img src="{$prefs_img}" border="0" name="ten" alt="{$prefs_title}" title="{$prefs_title}"/></a></td>
<td><a href="{$logout_link}" onMouseOver="" onMouseOut=""><img src="{$logout_img}" border="0" name="eleven" alt="{$logout_title}" title="{$logout_title}"/></a></td>
<td><a href="{$about_link}" onMouseOver="" onMouseOut=""><img src="{$about_img}" border="0" name="about" alt="{$about_title}" title="{$about_title}"/></a></td>
<td><a href="{$manual_link}" onMouseOver="" onMouseOut=""><img src="{$manual_img}" border="0" name="manual" alt="{$manual_title}" title="{$manual_title}"/></a></td>
</tr>
</table>
</td>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 KiB

View File

@ -12,18 +12,17 @@
<xsl:variable name="prefs_link"><xsl:value-of select="prefs_link"/></xsl:variable>
<xsl:variable name="logout_link"><xsl:value-of select="logout_link"/></xsl:variable>
<xsl:variable name="about_link"><xsl:value-of select="about_link"/></xsl:variable>
<xsl:variable name="home_img_hover"><xsl:value-of select="home_img_hover"/></xsl:variable>
<xsl:variable name="prefs_img_hover"><xsl:value-of select="prefs_img_hover"/></xsl:variable>
<xsl:variable name="logout_img_hover"><xsl:value-of select="logout_img_hover"/></xsl:variable>
<xsl:variable name="about_img_hover"><xsl:value-of select="about_img_hover"/></xsl:variable>
<xsl:variable name="manual_link"><xsl:value-of select="manual_link"/></xsl:variable>
<xsl:variable name="home_img"><xsl:value-of select="home_img"/></xsl:variable>
<xsl:variable name="prefs_img"><xsl:value-of select="prefs_img"/></xsl:variable>
<xsl:variable name="logout_img"><xsl:value-of select="logout_img"/></xsl:variable>
<xsl:variable name="about_img"><xsl:value-of select="about_img"/></xsl:variable>
<xsl:variable name="manual_img"><xsl:value-of select="manual_img"/></xsl:variable>
<xsl:variable name="home_title"><xsl:value-of select="home_title"/></xsl:variable>
<xsl:variable name="prefs_title"><xsl:value-of select="prefs_title"/></xsl:variable>
<xsl:variable name="logout_title"><xsl:value-of select="logout_title"/></xsl:variable>
<xsl:variable name="about_title"><xsl:value-of select="about_title"/></xsl:variable>
<xsl:variable name="manual_title"><xsl:value-of select="manual_title"/></xsl:variable>
<xsl:variable name="app_tpl"><xsl:value-of select="app_tpl"/></xsl:variable>
<html>
<head>
@ -53,6 +52,7 @@
<td valign="bottom" width="85" class="top"><a href="{$prefs_link}"><img src="{$prefs_img}" width="85" height="23" border="0" alt="{$prefs_title}" title="{$prefs_title}"/></a></td>
<td valign="bottom" width="56" class="top"><a href="{$logout_link}"><img src="{$logout_img}" width="56" height="23" border="0" alt="{$logout_title}" title="{$logout_title}"/></a></td>
<td valign="bottom" width="39" class="top"><a href="{$about_link}"><img src="{$about_img}" width="39" height="23" border="0" alt="{$about_title}" title="{$about_title}"/></a></td>
<td valign="bottom" width="39" class="top"><a href="{$manual_link}"><img src="{$manual_img}" width="39" height="23" border="0" alt="{$manual_title}" title="{$manual_title}"/></a></td>
</tr>
</table>
</td>

View File

@ -9,14 +9,17 @@
<xsl:variable name="prefs_link" select="prefs_link"/>
<xsl:variable name="logout_link" select="logout_link"/>
<xsl:variable name="about_link" select="about_link"/>
<xsl:variable name="manual_link" select="manual_link"/>
<xsl:variable name="home_img" select="home_img"/>
<xsl:variable name="prefs_img" select="prefs_img"/>
<xsl:variable name="logout_img" select="logout_img"/>
<xsl:variable name="about_img" select="about_img"/>
<xsl:variable name="manual_img" select="manual_img"/>
<xsl:variable name="home_title" select="home_title"/>
<xsl:variable name="prefs_title" select="prefs_title"/>
<xsl:variable name="logout_title" select="logout_title"/>
<xsl:variable name="about_title" select="about_title"/>
<xsl:variable name="manual_title" select="manual_title"/>
<xsl:variable name="phpgw_body" select="phpgw_body"/>
<xsl:variable name="greybar" select="greybar"/>
<xsl:variable name="phpgw_statustext" select="lang_phpgw_statustext"/>
@ -55,6 +58,7 @@
<td><a href="{$prefs_link}"><img src="{$prefs_img}" border="0" alt="{$prefs_title}" title="{$prefs_title}"/></a></td>
<td><a href="{$logout_link}"><img src="{$logout_img}" border="0" alt="{$logout_title}" title="{$logout_title}"/></a></td>
<td><a href="{$about_link}"><img src="{$about_img}" border="0" alt="{$about_title}" title="{$about_title}"/></a></td>
<td><a href="{$manual_link}"><img src="{$manual_img}" border="0" alt="{$manual_title}" title="{$manual_title}"/></a></td>
</tr>
</table>
</td>

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB