phpgroupware-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Phpgroupware-cvs] CVS: phpgwapi/templates/linux-at-work.de navbar.inc.


From: Ralf Becker <address@hidden>
Subject: [Phpgroupware-cvs] CVS: phpgwapi/templates/linux-at-work.de navbar.inc.php,1.6.2.6,1.6.2.7
Date: Tue, 01 Jul 2003 18:02:54 -0400

Update of /cvsroot/phpgroupware/phpgwapi/templates/linux-at-work.de
In directory subversions:/tmp/cvs-serv20243/linux-at-work.de

Modified Files:
      Tag: Version-0_9_14-branch
        navbar.inc.php 
Log Message:
fixed the additional about icon in the navbar


Index: navbar.inc.php
===================================================================
RCS file: 
/cvsroot/phpgroupware/phpgwapi/templates/linux-at-work.de/navbar.inc.php,v
retrieving revision 1.6.2.6
retrieving revision 1.6.2.7
diff -C2 -r1.6.2.6 -r1.6.2.7
*** navbar.inc.php      22 Mar 2003 12:07:51 -0000      1.6.2.6
--- navbar.inc.php      1 Jul 2003 22:02:52 -0000       1.6.2.7
***************
*** 32,42 ****
                #  echo '<pre>'; print_r($GLOBALS['phpgw_info']['navbar']); 
echo '</pre>';
                $applications = '';
!               while ($app = each($GLOBALS['phpgw_info']['navbar']))
                {
!                       if ($app[1]['title'] != 'Home' && $app[1]['title'] != 
'preferences' && ! ereg('About',$app[1]['title']) && $app[1]['title'] != 
'Logout')
                        {
!                               $title = $app[1]['title'];
  
!                               $applications .= '<tr><td 
class="main_menu_apps"><a class="main_menu" href="' . $app[1]['url'] . '"';
                                if 
(isset($GLOBALS['phpgw_info']['flags']['navbar_target']))
                                {
--- 32,42 ----
                #  echo '<pre>'; print_r($GLOBALS['phpgw_info']['navbar']); 
echo '</pre>';
                $applications = '';
!               foreach($GLOBALS['phpgw_info']['navbar'] as $app => $app_data)
                {
!                       if ($app != 'home' && $app != 'preferences' && $app != 
'about' && $app != 'logout')
                        {
!                               $title = $app_data['title'];
  
!                               $applications .= '<tr><td 
class="main_menu_apps"><a class="main_menu" href="' . $app_data['url'] . '"';
                                if 
(isset($GLOBALS['phpgw_info']['flags']['navbar_target']))
                                {
***************
*** 46,50 ****
                                $applications .= 
'>'.$title.'</a></td></tr>'."\r\n";
                        }
!                       $img_src_over = 
$GLOBALS['phpgw']->common->image($app[0],'navbar-over.gif');
                        if($img_src_over)
                        {
--- 46,50 ----
                                $applications .= 
'>'.$title.'</a></td></tr>'."\r\n";
                        }
!                       $img_src_over = 
$GLOBALS['phpgw']->common->image($app,'navbar-over.gif');
                        if($img_src_over)
                        {





reply via email to

[Prev in Thread] Current Thread [Next in Thread]