phpgroupware-cvs
[Top][All Lists]
Advanced

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

[Phpgroupware-cvs] CVS: skel/inc class.skel.inc.php,1.1.1.1,1.2 header.i


From: Miles Lott <address@hidden>
Subject: [Phpgroupware-cvs] CVS: skel/inc class.skel.inc.php,1.1.1.1,1.2 header.inc.php,1.1.1.1,1.2 hook_add_def_pref.inc.php,1.1,1.2 hook_admin.inc.php,1.3,1.4 hook_manual.inc.php,1.1.1.1,1.2
Date: Thu, 07 Mar 2002 23:27:08 -0500

Update of /cvsroot/phpgroupware/skel/inc
In directory subversions:/tmp/cvs-serv597/inc

Modified Files:
        class.skel.inc.php header.inc.php hook_add_def_pref.inc.php 
        hook_admin.inc.php hook_manual.inc.php 
Log Message:
Update GLOBALS and some minor formatting



Index: class.skel.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/skel/inc/class.skel.inc.php,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
*** class.skel.inc.php  20 May 2001 07:40:32 -0000      1.1.1.1
--- class.skel.inc.php  8 Mar 2002 04:27:05 -0000       1.2
***************
*** 14,22 ****
        {
                var $db;
                function someotherfunc()
                {
                        //nothing to be added yet
                }
- 
        }
  ?>
--- 14,27 ----
        {
                var $db;
+ 
+               function skel()
+               {
+                       // constructor
+               }
+ 
                function someotherfunc()
                {
                        //nothing to be added yet
                }
        }
  ?>

Index: header.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/skel/inc/header.inc.php,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
*** header.inc.php      20 May 2001 07:40:32 -0000      1.1.1.1
--- header.inc.php      8 Mar 2002 04:27:05 -0000       1.2
***************
*** 14,20 ****
        $t->set_file(array('skel_header' => 'header.tpl'));
  
!       if (isset($phpgw_info['user']['preferences']['skel']['skel_font']))
        {
!               $font = $phpgw_info['user']['preferences']['skel']['skel_font'];
        }
        else
--- 14,20 ----
        $t->set_file(array('skel_header' => 'header.tpl'));
  
!       
if(isset($GLOBALS['phpgw_info']['user']['preferences']['skel']['skel_font']))
        {
!               $font = 
$GLOBALS['phpgw_info']['user']['preferences']['skel']['skel_font'];
        }
        else
***************
*** 23,31 ****
        }
  
!       $t->set_var('bg_color',$phpgw_info['theme']['th_bg']);
        $t->set_var('font',$font);
!       
$t->set_var('link_categories',$phpgw->link('/preferences/categories.php','cats_app=skel&cats_level=True&global_cats=True'));
        $t->set_var('lang_categories',lang('Categories'));
!       $t->set_var('link_skel',$phpgw->link('/skel/index.php'));
        $t->set_var('lang_skel',lang('Skeleton'));
  
--- 23,31 ----
        }
  
!       $t->set_var('bg_color',$GLOBALS['phpgw_info']['theme']['th_bg']);
        $t->set_var('font',$font);
!       
$t->set_var('link_categories',$GLOBALS['phpgw']->link('/preferences/categories.php','cats_app=skel&cats_level=True&global_cats=True'));
        $t->set_var('lang_categories',lang('Categories'));
!       $t->set_var('link_skel',$GLOBALS['phpgw']->link('/skel/index.php'));
        $t->set_var('lang_skel',lang('Skeleton'));
  

Index: hook_add_def_pref.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/skel/inc/hook_add_def_pref.inc.php,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** hook_add_def_pref.inc.php   9 Jun 2001 02:43:01 -0000       1.1
--- hook_add_def_pref.inc.php   8 Mar 2002 04:27:05 -0000       1.2
***************
*** 11,16 ****
        /* $Id$ */
  
!       global $pref;
!       
$pref->change('notes','notes_font','Verdana,Arial,Helvetica,sans-serif');
!       $pref->change('notes','notes_font_size','3');
  ?>
--- 11,15 ----
        /* $Id$ */
  
!       
$GLOBALS['pref']->change('notes','notes_font','Verdana,Arial,Helvetica,sans-serif');
!       $GLOBALS['pref']->change('notes','notes_font_size','3');
  ?>

Index: hook_admin.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/skel/inc/hook_admin.inc.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** hook_admin.inc.php  21 Nov 2001 03:22:08 -0000      1.3
--- hook_admin.inc.php  8 Mar 2002 04:27:05 -0000       1.4
***************
*** 15,19 ****
        $title = $appname;
        $file = Array(
! //            'Administrate'  => $GLOBALS['phpgw']->link('/skel/admin.php'),
        );
  //Do not modify below this line
--- 15,19 ----
        $title = $appname;
        $file = Array(
! //            'Administer' => $GLOBALS['phpgw']->link('/skel/admin.php'),
        );
  //Do not modify below this line

Index: hook_manual.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/skel/inc/hook_manual.inc.php,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
*** hook_manual.inc.php 20 May 2001 07:40:32 -0000      1.1.1.1
--- hook_manual.inc.php 8 Mar 2002 04:27:05 -0000       1.2
***************
*** 1,5 ****
  <?php
      
/**************************************************************************\
!     * phpGroupWare - Manual                                                *
      * http://www.phpgroupware.org                                             
 *
      * Written by Mark Peters <address@hidden>                        *
--- 1,5 ----
  <?php
      
/**************************************************************************\
!     * phpGroupWare - Manual                                                   
 *
      * http://www.phpgroupware.org                                             
 *
      * Written by Mark Peters <address@hidden>                        *




reply via email to

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