[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Phpgroupware-cvs] CVS: email/inc class.uicompose.inc.php,1.4,1.5 class.
From: |
Ralf Becker <address@hidden> |
Subject: |
[Phpgroupware-cvs] CVS: email/inc class.uicompose.inc.php,1.4,1.5 class.uifilters.inc.php,1.12,1.13 class.uifolder.inc.php,1.4,1.5 class.uiindex.inc.php,1.21,1.22 class.uimessage.inc.php,1.9,1.10 class.uipreferences.inc.php,1.16,1.17 functions.inc.php,1.116,1.117 |
Date: |
Sun, 20 Apr 2003 16:47:53 -0400 |
Update of /cvsroot/phpgroupware/email/inc
In directory subversions:/tmp/cvs-serv5291/inc
Modified Files:
class.uicompose.inc.php class.uifilters.inc.php
class.uifolder.inc.php class.uiindex.inc.php
class.uimessage.inc.php class.uipreferences.inc.php
functions.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.5
diff -C2 -r1.4 -r1.5
*** class.uicompose.inc.php 14 Mar 2003 04:01:20 -0000 1.4
--- class.uicompose.inc.php 20 Apr 2003 20:47:50 -0000 1.5
***************
*** 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.13
diff -C2 -r1.12 -r1.13
*** class.uifilters.inc.php 14 Mar 2003 04:01:20 -0000 1.12
--- class.uifilters.inc.php 20 Apr 2003 20:47:50 -0000 1.13
***************
*** 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.5
diff -C2 -r1.4 -r1.5
*** class.uifolder.inc.php 14 Mar 2003 04:01:20 -0000 1.4
--- class.uifolder.inc.php 20 Apr 2003 20:47:50 -0000 1.5
***************
*** 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.22
diff -C2 -r1.21 -r1.22
*** class.uiindex.inc.php 14 Mar 2003 04:01:44 -0000 1.21
--- class.uiindex.inc.php 20 Apr 2003 20:47:50 -0000 1.22
***************
*** 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.10
diff -C2 -r1.9 -r1.10
*** class.uimessage.inc.php 14 Mar 2003 04:01:47 -0000 1.9
--- class.uimessage.inc.php 20 Apr 2003 20:47:50 -0000 1.10
***************
*** 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
retrieving revision 1.17
diff -C2 -r1.16 -r1.17
*** class.uipreferences.inc.php 14 Mar 2003 04:01:48 -0000 1.16
--- class.uipreferences.inc.php 20 Apr 2003 20:47:50 -0000 1.17
***************
*** 347,350 ****
--- 347,351 ----
}
+ $GLOBALS['phpgw_info']['flags']['app_header'] =
lang('E-Mail preferences');
if ($GLOBALS['phpgw']->msg->phpgw_0914_orless)
{
***************
*** 357,363 ****
else
{
!
$GLOBALS['phpgw']->xslttpl->add_file(array('app_data',
!
$GLOBALS['phpgw']->common->get_tpl_dir('phpgwapi','default') . SEP .
'app_header')
!
);
}
--- 358,363 ----
else
{
! $GLOBALS['phpgw_info']['flags']['xslt_app'] =
True;
!
$GLOBALS['phpgw']->xslttpl->add_file(array('app_data'));
}
***************
*** 530,534 ****
$this->tpl =
CreateObject('phpgwapi.Template',PHPGW_APP_TPL);
}
!
if ($GLOBALS['phpgw']->msg->phpgw_0914_orless)
{
--- 530,535 ----
$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)
{
***************
*** 541,547 ****
else
{
!
$GLOBALS['phpgw']->xslttpl->add_file(array('app_data',
!
$GLOBALS['phpgw']->common->get_tpl_dir('phpgwapi','default') . SEP .
'app_header')
!
);
}
--- 542,547 ----
else
{
! $GLOBALS['phpgw_info']['flags']['xslt_app'] =
True;
!
$GLOBALS['phpgw']->xslttpl->add_file(array('app_data'));
}
***************
*** 711,714 ****
--- 711,715 ----
}
+ $GLOBALS['phpgw_info']['flags']['app_header'] =
lang('E-Mail Extra Accounts List');
if ($GLOBALS['phpgw']->msg->phpgw_0914_orless)
{
***************
*** 721,727 ****
else
{
!
$GLOBALS['phpgw']->xslttpl->add_file(array('app_data',
!
$GLOBALS['phpgw']->common->get_tpl_dir('phpgwapi','default') . SEP .
'app_header')
!
);
}
--- 722,727 ----
else
{
! $GLOBALS['phpgw_info']['flags']['xslt_app'] =
True;
!
$GLOBALS['phpgw']->xslttpl->add_file(array('app_data'));
}
Index: functions.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/email/inc/functions.inc.php,v
retrieving revision 1.116
retrieving revision 1.117
diff -C2 -r1.116 -r1.117
*** functions.inc.php 14 Mar 2003 04:01:49 -0000 1.116
--- functions.inc.php 20 Apr 2003 20:47:50 -0000 1.117
***************
*** 32,35 ****
*/
set_magic_quotes_runtime(0);
-
?>
--- 32,34 ----
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Phpgroupware-cvs] CVS: email/inc class.uicompose.inc.php,1.4,1.5 class.uifilters.inc.php,1.12,1.13 class.uifolder.inc.php,1.4,1.5 class.uiindex.inc.php,1.21,1.22 class.uimessage.inc.php,1.9,1.10 class.uipreferences.inc.php,1.16,1.17 functions.inc.php,1.116,1.117,
Ralf Becker <address@hidden> <=