phpgroupware-cvs
[Top][All Lists]
Advanced

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

[Phpgroupware-cvs] CVS: email/inc class.uicompose.inc.php,1.4,1.4.2.1 cl


From: Ralf Becker <address@hidden>
Subject: [Phpgroupware-cvs] CVS: email/inc class.uicompose.inc.php,1.4,1.4.2.1 class.uifilters.inc.php,1.12,1.12.2.1class.uifolder.inc.php,1.4,1.4.2.1 class.uiindex.inc.php,1.21,1.21.2.1class.uimessage.inc.php,1.9,1.9.2.1 class.uipreferences.inc.php,1.16.2.1,1.16.2.2
Date: Sun, 20 Apr 2003 17:07:59 -0400

Update of /cvsroot/phpgroupware/email/inc
In directory subversions:/tmp/cvs-serv8775/inc

Modified Files:
      Tag: Version-0_9_16-branch
        class.uicompose.inc.php class.uifilters.inc.php 
        class.uifolder.inc.php class.uiindex.inc.php 
        class.uimessage.inc.php class.uipreferences.inc.php 
Log Message:
added app_header via $GLOBALS['phpgw_info']['flags']['app_header']


Index: class.uicompose.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/email/inc/class.uicompose.inc.php,v
retrieving revision 1.4
retrieving revision 1.4.2.1
diff -C2 -r1.4 -r1.4.2.1
*** class.uicompose.inc.php     14 Mar 2003 04:01:20 -0000      1.4
--- class.uicompose.inc.php     20 Apr 2003 21:07:56 -0000      1.4.2.1
***************
*** 65,68 ****
--- 65,69 ----
                        }
                        
+                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang('E-Mail').' - '.lang('Compose');
                        if ($GLOBALS['phpgw']->msg->phpgw_0914_orless)
                        {
***************
*** 76,82 ****
                        else
                        {
!                               
$GLOBALS['phpgw']->xslttpl->add_file(array('app_data',
!                                                                               
        $GLOBALS['phpgw']->common->get_tpl_dir('phpgwapi','default') . SEP . 
'app_header')
!                                                                               
        );
                        }
                        
--- 77,82 ----
                        else
                        {
!                               $GLOBALS['phpgw_info']['flags']['xslt_app'] = 
True;
!                               
$GLOBALS['phpgw']->xslttpl->add_file(array('app_data'));
                        }
                        

Index: class.uifilters.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/email/inc/class.uifilters.inc.php,v
retrieving revision 1.12
retrieving revision 1.12.2.1
diff -C2 -r1.12 -r1.12.2.1
*** class.uifilters.inc.php     14 Mar 2003 04:01:20 -0000      1.12
--- class.uifilters.inc.php     20 Apr 2003 21:07:56 -0000      1.12.2.1
***************
*** 77,80 ****
--- 77,81 ----
                        }
                        
+                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang('EMail Filters');
                        if ($GLOBALS['phpgw']->msg->phpgw_0914_orless)
                        {
***************
*** 87,93 ****
                        else
                        {
!                               
$GLOBALS['phpgw']->xslttpl->add_file(array('app_data',
!                                                                               
        $GLOBALS['phpgw']->common->get_tpl_dir('phpgwapi','default') . SEP . 
'app_header')
!                                                                               
        );
                        }
                        
--- 88,93 ----
                        else
                        {
!                               $GLOBALS['phpgw_info']['flags']['xslt_app'] = 
True;
!                               
$GLOBALS['phpgw']->xslttpl->add_file(array('app_data'));
                        }
                        
***************
*** 660,663 ****
--- 660,664 ----
                        }
                        
+                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang('E-Mail INBOX Filters List');
                        if ($GLOBALS['phpgw']->msg->phpgw_0914_orless)
                        {
***************
*** 670,676 ****
                        else
                        {
!                               
$GLOBALS['phpgw']->xslttpl->add_file(array('app_data',
!                                                                               
        $GLOBALS['phpgw']->common->get_tpl_dir('phpgwapi','default') . SEP . 
'app_header')
!                                                                               
        );
                        }
                        
--- 671,676 ----
                        else
                        {
!                               $GLOBALS['phpgw_info']['flags']['xslt_app'] = 
True;
!                               
$GLOBALS['phpgw']->xslttpl->add_file(array('app_data');
                        }
                        

Index: class.uifolder.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/email/inc/class.uifolder.inc.php,v
retrieving revision 1.4
retrieving revision 1.4.2.1
diff -C2 -r1.4 -r1.4.2.1
*** class.uifolder.inc.php      14 Mar 2003 04:01:20 -0000      1.4
--- class.uifolder.inc.php      20 Apr 2003 21:07:56 -0000      1.4.2.1
***************
*** 46,49 ****
--- 46,50 ----
                        }
                        
+                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang('E-Mail').' - '.lang('Folder');
                        if ($GLOBALS['phpgw']->msg->phpgw_0914_orless)
                        {
***************
*** 58,64 ****
                        else
                        {
!                               
$GLOBALS['phpgw']->xslttpl->add_file(array('app_data',
!                                                                               
        $GLOBALS['phpgw']->common->get_tpl_dir('phpgwapi','default') . SEP . 
'app_header')
!                                                                               
        );
                        }
                        
--- 59,64 ----
                        else
                        {
!                               $GLOBALS['phpgw_info']['flags']['xslt_app'] = 
True;
!                               
$GLOBALS['phpgw']->xslttpl->add_file(array('app_data'));
                        }
                        

Index: class.uiindex.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/email/inc/class.uiindex.inc.php,v
retrieving revision 1.21
retrieving revision 1.21.2.1
diff -C2 -r1.21 -r1.21.2.1
*** class.uiindex.inc.php       14 Mar 2003 04:01:44 -0000      1.21
--- class.uiindex.inc.php       20 Apr 2003 21:07:56 -0000      1.21.2.1
***************
*** 412,418 ****
                function index_xslt_tpl()
                {
!                       $GLOBALS['phpgw']->xslttpl->add_file(array('app_data',
!                                                                               
$GLOBALS['phpgw']->common->get_tpl_dir('phpgwapi','default') . SEP . 
'app_header')
!                                                                               
);
                        
                        $this->bo->xi['my_layout'] = 
$GLOBALS['phpgw']->msg->get_pref_value('layout');
--- 412,419 ----
                function index_xslt_tpl()
                {
!                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang('E-Mail').' - '.lang('list messages');
! 
!                       $GLOBALS['phpgw_info']['flags']['xslt_app'] = True;
!                       $GLOBALS['phpgw']->xslttpl->add_file(array('app_data'));
                        
                        $this->bo->xi['my_layout'] = 
$GLOBALS['phpgw']->msg->get_pref_value('layout');
***************
*** 428,433 ****
                        
                        $data = array(
-                               'appname' => lang('E-Mail'),
-                               'function_msg' => lang('list messages'),
                                'index_js' => $this->index_xslt_javascript(),
                                'widget_toolbar' => $widget_toolbar,
--- 429,432 ----

Index: class.uimessage.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/email/inc/class.uimessage.inc.php,v
retrieving revision 1.9
retrieving revision 1.9.2.1
diff -C2 -r1.9 -r1.9.2.1
*** class.uimessage.inc.php     14 Mar 2003 04:01:47 -0000      1.9
--- class.uimessage.inc.php     20 Apr 2003 21:07:56 -0000      1.9.2.1
***************
*** 55,58 ****
--- 55,59 ----
                        }
                        
+                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang('E-Mail');
                        if ($GLOBALS['phpgw']->msg->phpgw_0914_orless)
                        {
***************
*** 71,77 ****
                        else
                        {
!                               
$GLOBALS['phpgw']->xslttpl->add_file(array('app_data',
!                                                                               
        $GLOBALS['phpgw']->common->get_tpl_dir('phpgwapi','default') . SEP . 
'app_header')
!                                                                               
        );
                        }
                        
--- 72,77 ----
                        else
                        {
!                               $GLOBALS['phpgw_info']['flags']['xslt_app'] = 
True;
!                               
$GLOBALS['phpgw']->xslttpl->add_file(array('app_data');
                        }
                        

Index: class.uipreferences.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/email/inc/class.uipreferences.inc.php,v
retrieving revision 1.16.2.1
retrieving revision 1.16.2.2
diff -C2 -r1.16.2.1 -r1.16.2.2
*** class.uipreferences.inc.php 31 Mar 2003 01:18:07 -0000      1.16.2.1
--- class.uipreferences.inc.php 20 Apr 2003 21:07:56 -0000      1.16.2.2
***************
*** 348,351 ****
--- 348,352 ----
                        }
                        
+                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang('E-Mail preferences');
                        if ($GLOBALS['phpgw']->msg->phpgw_0914_orless)
                        {
***************
*** 358,364 ****
                        else
                        {
!                               
$GLOBALS['phpgw']->xslttpl->add_file(array('app_data',
!                                                                               
        $GLOBALS['phpgw']->common->get_tpl_dir('phpgwapi','default') . SEP . 
'app_header')
!                                                                               
        );
                        }
                        
--- 359,364 ----
                        else
                        {
!                               $GLOBALS['phpgw_info']['flags']['xslt_app'] = 
True;
!                               
$GLOBALS['phpgw']->xslttpl->add_file(array('app_data'));
                        }
                        
***************
*** 531,535 ****
                                $this->tpl = 
CreateObject('phpgwapi.Template',PHPGW_APP_TPL);
                        }
!                       
                        if ($GLOBALS['phpgw']->msg->phpgw_0914_orless)
                        {
--- 531,536 ----
                                $this->tpl = 
CreateObject('phpgwapi.Template',PHPGW_APP_TPL);
                        }
! 
!                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang('E-Mail Extra Accounts');
                        if ($GLOBALS['phpgw']->msg->phpgw_0914_orless)
                        {
***************
*** 542,548 ****
                        else
                        {
!                               
$GLOBALS['phpgw']->xslttpl->add_file(array('app_data',
!                                                                               
        $GLOBALS['phpgw']->common->get_tpl_dir('phpgwapi','default') . SEP . 
'app_header')
!                                                                               
        );
                        }
                        
--- 543,548 ----
                        else
                        {
!                               $GLOBALS['phpgw_info']['flags']['xslt_app'] = 
True;
!                               
$GLOBALS['phpgw']->xslttpl->add_file(array('app_data'));
                        }
                        
***************
*** 712,715 ****
--- 712,716 ----
                        }
                        
+                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang('E-Mail Extra Accounts List');
                        if ($GLOBALS['phpgw']->msg->phpgw_0914_orless)
                        {
***************
*** 722,728 ****
                        else
                        {
!                               
$GLOBALS['phpgw']->xslttpl->add_file(array('app_data',
!                                                                               
        $GLOBALS['phpgw']->common->get_tpl_dir('phpgwapi','default') . SEP . 
'app_header')
!                                                                               
        );
                        }
                        
--- 723,728 ----
                        else
                        {
!                               $GLOBALS['phpgw_info']['flags']['xslt_app'] = 
True;
!                               
$GLOBALS['phpgw']->xslttpl->add_file(array('app_data'));
                        }
                        





reply via email to

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