phpgroupware-cvs
[Top][All Lists]
Advanced

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

[Phpgroupware-cvs] phpgwapi/templates/linux-at-work.de head.inc.php, 1.


From: powerstat
Subject: [Phpgroupware-cvs] phpgwapi/templates/linux-at-work.de head.inc.php, 1.7 navbar.inc.php, 1.13
Date: Thu, 28 Apr 2005 10:11:00 +0200

Update of phpgwapi/templates/linux-at-work.de

Modified Files:
     Branch: MAIN
            head.inc.php lines: +8 -11
            navbar.inc.php lines: +47 -37

Log Message:
phpdocs added to the rest outside inc

====================================================
Index: phpgwapi/templates/linux-at-work.de/head.inc.php
diff -u phpgwapi/templates/linux-at-work.de/head.inc.php:1.6 
phpgwapi/templates/linux-at-work.de/head.inc.php:1.7
--- phpgwapi/templates/linux-at-work.de/head.inc.php:1.6        Sun Jan 16 
00:26:01 2005
+++ phpgwapi/templates/linux-at-work.de/head.inc.php    Thu Apr 28 08:11:59 2005
@@ -1,15 +1,12 @@
 <?php
-  /**************************************************************************\
-  * 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$ */
+       /**
+       * Template header
+       * @copyright Copyright (C) 2003-2005 Free Software Foundation, Inc. 
http://www.fsf.org/
+       * @license http://www.gnu.org/licenses/gpl.html GNU General Public 
License
+       * @package phpgwapi
+       * @subpackage gui
+       * @version $Id$
+       */

         $p = createobject('phpgwapi.preferences');
         $preferences = $p->read_repository();

====================================================
Index: phpgwapi/templates/linux-at-work.de/navbar.inc.php
diff -u phpgwapi/templates/linux-at-work.de/navbar.inc.php:1.12 
phpgwapi/templates/linux-at-work.de/navbar.inc.php:1.13
--- phpgwapi/templates/linux-at-work.de/navbar.inc.php:1.12     Thu Dec 30 
07:22:20 2004
+++ phpgwapi/templates/linux-at-work.de/navbar.inc.php  Thu Apr 28 08:11:59 2005
@@ -1,16 +1,20 @@
 <?php
-  /**************************************************************************\
-  * 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$ */
-
+       /**
+       * Template navigation bar
+       * @copyright Copyright (C) 2003-2005 Free Software Foundation, Inc. 
http://www.fsf.org/
+       * @license http://www.gnu.org/licenses/gpl.html GNU General Public 
License
+       * @package phpgwapi
+       * @subpackage gui
+       * @version $Id$
+       */
+
+
+       /**
+       * Parse navigation var
+       *
+       * @param boolean $force
+       * @ignore
+       */
        function parse_navbar($force = False)
        {
                $tpl = CreateObject('phpgwapi.Template',PHPGW_TEMPLATE_DIR);
@@ -157,31 +161,37 @@
                return;
        }

+       /**
+       * Parse navigation bar end
+       * @ignore
+       */
        function parse_navbar_end()
        {
-#              $tpl = CreateObject('phpgwapi.Template',PHPGW_TEMPLATE_DIR);
-#              $tpl->set_unknowns('remove');
-#
-#              $tpl->set_file(array('footer' => 'footer.tpl'));
-#              $tpl->set_block('footer','B_powered_bottom','V_powered_bottom');
-#
-#              if ($GLOBALS['phpgw_info']['server']['showpoweredbyon'] == 
'bottom')
-#              {
-#                      $var = Array(
-#                              'powered'       => lang('Powered by 
phpGroupWare version %1', 
$GLOBALS['phpgw_info']['server']['versions']['phpgwapi']),
-#                              'img_root'      => PHPGW_IMAGES_DIR,
-#                              'power_backcolor'       => 
$GLOBALS['phpgw_info']['theme']['navbar_bg'],
-#                              'power_textcolor'       => 
$GLOBALS['phpgw_info']['theme']['navbar_text']
-//                             'version'       => 
$GLOBALS['phpgw_info']['server']['versions']['phpgwapi']
-#                      );
-#                      $tpl->set_var($var);
-#                      $tpl->parse('V_powered_bottom','B_powered_bottom');
-#              }
-##             else
-#              {
-#                      $tpl->set_var('V_powered_bottom','');
-#              }
-#
-#              $GLOBALS['phpgw']->hooks->process('navbar_end');
-#              $tpl->pfp('out','footer');
+/*
+               $tpl = CreateObject('phpgwapi.Template',PHPGW_TEMPLATE_DIR);
+               $tpl->set_unknowns('remove');
+
+               $tpl->set_file(array('footer' => 'footer.tpl'));
+               $tpl->set_block('footer','B_powered_bottom','V_powered_bottom');
+
+               if ($GLOBALS['phpgw_info']['server']['showpoweredbyon'] == 
'bottom')
+               {
+                       $var = Array(
+                               'powered'       => lang('Powered by 
phpGroupWare version %1', 
$GLOBALS['phpgw_info']['server']['versions']['phpgwapi']),
+                               'img_root'      => PHPGW_IMAGES_DIR,
+                               'power_backcolor'       => 
$GLOBALS['phpgw_info']['theme']['navbar_bg'],
+                               'power_textcolor'       => 
$GLOBALS['phpgw_info']['theme']['navbar_text']
+                               'version'       => 
$GLOBALS['phpgw_info']['server']['versions']['phpgwapi']
+                       );
+                       $tpl->set_var($var);
+                       $tpl->parse('V_powered_bottom','B_powered_bottom');
+               }
+               else
+               {
+                       $tpl->set_var('V_powered_bottom','');
+               }
+
+               $GLOBALS['phpgw']->hooks->process('navbar_end');
+               $tpl->pfp('out','footer');
+*/
        }






reply via email to

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