Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<?php
/*********************************************************************************
* The contents of this file are subject to the SugarCRM Public License Version 1.1.2
* ("License"); You may not use this file except in compliance with the
* License. You may obtain a copy of the License at http://www.sugarcrm.com/SPL
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
* the specific language governing rights and limitations under the License.
* The Original Code is: SugarCRM Open Source
* The Initial Developer of the Original Code is SugarCRM, Inc.
* Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.;
* All Rights Reserved.
* Contributor(s): ______________________________________.
********************************************************************************/
/*********************************************************************************
* $Header$
* Description: Contains a variety of utility functions used to display UI
* components such as form headers and footers. Intended to be modified on a per
* theme basis.
********************************************************************************/
require_once('include/logging.php');
global $app_strings;
$log = LoggerManager::getLogger('layout_utils');
/**
* Create HTML to display formatted form title of a form in the left pane
* param $left_title - the string to display as the title in the header
*/
function get_left_form_header ($left_title)
{
global $image_path;
$the_header = <<<EOQ
<table width="100%" cellpadding="0" cellspacing="0" border="0"><tbody><tr>
<td width="4" height="20"><img src="themes/images/head_start.gif"></td>
<td class="leftFormHeader" vAlign="middle" align="left" noWrap height="20">$left_title</td>
<td width="4" height="20"><img src="themes/images/head_end.gif"></td>
</tr></tbody></table>
<table width="100%" cellpadding="3" cellspacing="0" border="0" class="formOuterBorder"><tbody><tr><td align="left">
EOQ;
return $the_header;
}
/**
* Create HTML to display formatted form footer of form in the left pane.
*/
function get_left_form_footer() {
return ("</td></tr></tbody></table>\n");
}
/**
* Create HTML to display formatted form title.
* param $form_title - the string to display as the title in the header
* param $other_text - the string to next to the title. Typically used for form buttons.
* param $show_help - the boolean which determines if the print and help links are shown.
*/
function get_form_header ($form_title, $other_text, $show_help)
{
global $image_path;
global $app_strings;
$the_form = <<<EOQ
<!--table width="100%" cellpadding="0" cellspacing="0" border="0" class="formHeaderULine"><tbody><tr>
<td valign="bottom">
<table width="100%" cellpadding="0" cellspacing="0" border="0"><tbody><tr>
<td vAlign="middle" class="formHeader" align="left" noWrap height="15">$form_title </td>
</tr></tbody></table></td-->
EOQ;
if ($other_text) {
$the_form .= "<td width='20'><IMG height='1' src='themes/images/blank.gif'></td>\n";
$the_form .= "<td valign='bottom' class='formHeader' width='100%'>$other_text</td>\n";
}
else {
$the_form .= "<td><IMG height='1' src='themes/images/blank.gif'></td>\n";
}
if ($show_help==true) {
$the_form .= "<td class='bodySmall' align='right'>[ <A href='phprint.php?jt=".session_id().$GLOBALS['request_string']."'>".$app_strings['LNK_PRINT']."</A> ]</td>\n";
$the_form .= "<td class='bodySmall' align='right'>[ <A href='http://www.vtiger.com/products/crm/document.html' target='_blank'>".$app_strings['LNK_HELP']."</A> ]</td>\n";
}
$the_form .= <<<EOQ
</tr>
</tbody></table>
EOQ;
return $the_form;
}
/**
* Create HTML to display formatted form footer
*/
function get_form_footer() {
}
/**
* Create HTML to display formatted module title.
* param $module - the string to next to the title. Typically used for form buttons.
* param $module_title - the string to display as the module title
* param $show_help - the boolean which determines if the print and help links are shown.
*/
function get_module_title ($module, $module_title, $show_help) {
global $image_path;
global $app_strings;
$the_title = "<table width='100%' cellpadding='0' cellspacing='0' border='0'><tbody><tr><td>\n";
$the_title .= "<table cellpadding='0' cellspacing='0' border='0'><tbody><tr>\n";
$the_title .= "<td vAlign='middle' align='center'>\n";
if (is_file($image_path.$module.".gif")) {
$the_title .= "<IMG src='".$image_path.$module.".gif' border='0'>\n";
}
$the_title .= "</td><td class='moduleTitle' vAlign='middle' align='left' noWrap width='100%'> ";
$the_title .= $module_title."</td></tr></tbody></table></td>\n";
$the_title .= "<td width='100%'><IMG height='1' src='themes/images/blank.gif'></td>";
if ($show_help) {
// $the_title .= "<td class='bodySmall' nowrap align='right'> <A href='phprint.php?jt=".session_id().$GLOBALS['request_string']."'><img align=absmiddle hspace=3 border=0 src='themes/images/print.gif'>".$app_strings['LNK_PRINT']."</A> </td>\n";
// $the_title .= "<td class='bodySmall' nowrap align='right'> <A href='http://www.vtiger.com/products/crm/document.html' target='_blank'><img align=absmiddle hspace=3 border=0 src='themes/images/help_icon.gif'>".$app_strings['LNK_HELP']."</A></td>\n";
}
else {
$the_title .= "<td class='bodySmall' align='right'> </td>\n";
$the_title .= "<td class='bodySmall' align='right'> </td>\n";
}
$the_title .= "</tr><tr><td colspan='4' width='100%' class='hline'><IMG width='100%' height='1' src='themes/images/blank.gif'></td>";
$the_title .= "</tr></tbody></table>\n";
return $the_title;
}
/**
* Create a header for a popup.
* param $theme - The name of the current theme
*/
function insert_popup_header($theme)
{
global $app_strings, $default_charset;
$charset = $default_charset;
if(isset($app_strings['LBL_CHARSET']))
{
$charset = $app_strings['LBL_CHARSET'];
}
$out = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">';
$out .= '<HTML><HEAD>';
$out .= '<meta http-equiv="Content-Type" content="text/html; charset='.$charset.'">';
$out .= '<title>'.$app_strings['LBL_BROWSER_TITLE'].'</title>';
$out .= '<style type="text/css">@import url("themes/'.$theme.'/style.css"); </style>';
$out .= '</HEAD><BODY leftMargin="5" topMargin="5" MARGINHEIGHT="0" MARGINWIDTH="0">';
echo $out;
}
/**
* Create a footer for a popup.
*/
function insert_popup_footer()
{
echo <<< EOQ
</BODY>
</HTML>
EOQ;
}
?>