]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/utils/layout_utils.php
Release 6.1.4
[Github/sugarcrm.git] / include / utils / layout_utils.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2011 SugarCRM Inc.
6  * 
7  * This program is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU Affero General Public License version 3 as published by the
9  * Free Software Foundation with the addition of the following permission added
10  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
11  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
12  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
13  * 
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
17  * details.
18  * 
19  * You should have received a copy of the GNU Affero General Public License along with
20  * this program; if not, see http://www.gnu.org/licenses or write to the Free
21  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22  * 02110-1301 USA.
23  * 
24  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
25  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
26  * 
27  * The interactive user interfaces in modified source and object code versions
28  * of this program must display Appropriate Legal Notices, as required under
29  * Section 5 of the GNU Affero General Public License version 3.
30  * 
31  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
32  * these Appropriate Legal Notices must retain the display of the "Powered by
33  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
34  * technical reasons, the Appropriate Legal Notices must display the words
35  * "Powered by SugarCRM".
36  ********************************************************************************/
37
38
39 /**
40  * Contains a variety of utility functions used to display UI components such as form headers and footers.
41  *
42  * @todo refactor out these functions into the base UI objects as indicated
43  */
44
45 /**
46  * Create HTML to display formatted form title.
47  * 
48  * @param  $form_title string to display as the title in the header
49  * @param  $other_text string to next to the title.  Typically used for form buttons.
50  * @param  $show_help  boolean which determines if the print and help links are shown.
51  * @return string HTML
52  */
53 function get_form_header(
54     $form_title, 
55     $other_text, 
56     $show_help
57     )
58 {
59     global $sugar_version, $sugar_flavor, $server_unique_key, $current_language, $current_module, $current_action;
60     global $app_strings;
61     
62     $blankImageURL = SugarThemeRegistry::current()->getImageURL('blank.gif');
63     $printImageURL = SugarThemeRegistry::current()->getImageURL("print.gif");
64     $helpImageURL  = SugarThemeRegistry::current()->getImageURL("help.gif");
65     
66     $is_min_max = strpos($other_text,"_search.gif");
67     if($is_min_max !== false)
68         $form_title = "{$other_text}&nbsp;{$form_title}";
69
70     $the_form = <<<EOHTML
71 <table width="100%" cellpadding="0" cellspacing="0" border="0" class="formHeader h3Row">
72 <tr>
73 <td nowrap><h3><span>{$form_title}</span></h3></td>
74 EOHTML;
75     
76     $keywords = array("/class=\"button\"/","/class='button'/","/class=button/","/<\/form>/");
77     $match="";
78     foreach ($keywords as $left)
79         if (preg_match($left,$other_text))
80             $match = true;
81     
82     if ($other_text && $match) {
83         $the_form .= <<<EOHTML
84 <td colspan='10' width='100%'><IMG height='1' width='1' src='$blankImageURL' alt=''></td>
85 </tr>
86 <tr>
87 <td align='left' valign='middle' nowrap style='padding-bottom: 2px;'>$other_text</td>
88 <td width='100%'><IMG height='1' width='1' src='$blankImageURL' alt=''></td>
89 EOHTML;
90         if ($show_help) {
91             $the_form .= "<td align='right' nowrap>";
92             if ($_REQUEST['action'] != "EditView") {
93                 $the_form .= <<<EOHTML
94     <a href='index.php?{$GLOBALS['request_string']}' class='utilsLink'>
95     <img src='{$printImageURL}' alt='Print' border='0' align='absmiddle'>
96     </a>&nbsp;
97     <a href='index.php?{$GLOBALS['request_string']}' class='utilsLink'>
98     {$app_strings['LNK_PRINT']}
99     </a>
100 EOHTML;
101             }
102             $the_form .= <<<EOHTML
103 &nbsp;
104     <a href='index.php?module=Administration&action=SupportPortal&view=documentation&version={$sugar_version}&edition={$sugar_flavor}&lang={$current_language}&help_module={$current_module}&help_action={$current_action}&key={$server_unique_key}'
105        class='utilsLink' target='_blank'>
106     <img src='{$helpImageURL}' alt='Help' border='0' align='absmiddle'>
107     </a>&nbsp;
108     <a href='index.php?module=Administration&action=SupportPortal&view=documentation&version={$sugar_version}&edition={$sugar_flavor}&lang={$current_language}&help_module={$current_module}&help_action={$current_action}&key={$server_unique_key}'
109         class='utilsLink' target='_blank'>
110     {$app_strings['LNK_HELP']}
111     </a>
112 </td>
113 EOHTML;
114         }
115     } 
116     else {
117         if ($other_text && $is_min_max === false) {
118             $the_form .= <<<EOHTML
119 <td width='20'><img height='1' width='20' src='$blankImageURL' alt=''></td>
120 <td valign='middle' nowrap width='100%'>$other_text</td>
121 EOHTML;
122         }
123         else {
124             $the_form .= <<<EOHTML
125 <td width='100%'><IMG height='1' width='1' src='$blankImageURL' alt=''></td>
126 EOHTML;
127         }
128     
129         if ($show_help) {
130             $the_form .= "<td align='right' nowrap>";
131             if ($_REQUEST['action'] != "EditView") {
132                 $the_form .= <<<EOHTML
133     <a href='index.php?{$GLOBALS['request_string']}' class='utilsLink'>
134     <img src='{$printImageURL}' alt='Print' border='0' align='absmiddle'>
135     </a>&nbsp;
136     <a href='index.php?{$GLOBALS['request_string']}' class='utilsLink'>
137     {$app_strings['LNK_PRINT']}</a>
138 EOHTML;
139             }
140             $the_form .= <<<EOHTML
141     &nbsp;
142     <a href='index.php?module=Administration&action=SupportPortal&view=documentation&version={$sugar_version}&edition={$sugar_flavor}&lang={$current_language}&help_module={$current_module}&help_action={$current_action}&key={$server_unique_key}'
143        class='utilsLink' target='_blank'>
144     <img src='{$helpImageURL}' alt='Help' border='0' align='absmiddle'>
145     </a>&nbsp;
146     <a href='index.php?module=Administration&action=SupportPortal&view=documentation&version={$sugar_version}&edition={$sugar_flavor}&lang={$current_language}&help_module={$current_module}&help_action={$current_action}&key={$server_unique_key}'
147         class='utilsLink' target='_blank'>{$app_strings['LNK_HELP']}</a>
148 </td>
149 EOHTML;
150         }
151     }
152     
153     $the_form .= <<<EOHTML
154 </tr>
155 </table>
156 EOHTML;
157     
158     return $the_form;
159 }
160
161 /**
162  * Wrapper function for the get_module_title function, which is mostly used for pre-MVC modules.
163  * 
164  * @deprecated use SugarView::getModuleTitle() for MVC modules, or getClassicModuleTitle() for non-MVC modules
165  *
166  * @param  $module       string  to next to the title.  Typically used for form buttons.
167  * @param  $module_title string  to display as the module title
168  * @param  $show_help    boolean which determines if the print and help links are shown.
169  * @return string HTML
170  */
171 function get_module_title(
172     $module, 
173     $module_title, 
174     $show_help
175     )
176 {
177     global $sugar_version, $sugar_flavor, $server_unique_key, $current_language, $action;
178     global $app_strings;
179     
180     $the_title = "<div class='moduleTitle'>\n<h2>";
181     $module = preg_replace("/ /","",$module);
182     $iconPath = "";
183     if(is_file(SugarThemeRegistry::current()->getImageURL('icon_'.$module.'_32.png',false)))
184     {
185         $iconPath = SugarThemeRegistry::current()->getImageURL('icon_'.$module.'_32.png');
186     } else if (is_file(SugarThemeRegistry::current()->getImageURL('icon_'.ucfirst($module).'_32.png',false)))
187     {
188         $iconPath = SugarThemeRegistry::current()->getImageURL('icon_'.ucfirst($module).'_32.png');
189     }
190     if (!empty($iconPath)) {
191         $the_title .= "<a href='index.php?module={$module}&action=index'><img src='{$iconPath}' " 
192                     . "alt='".$module."' title='".$module."' align='absmiddle'></a>".$module_title;     
193     } else {
194                 $the_title .= $module_title;
195         }
196     $the_title .= "</h2>\n";
197     
198     if ($show_help) {
199         $the_title .= "<span class='utils'>";
200         if (isset($action) && $action != "EditView") {
201             $printImageURL = SugarThemeRegistry::current()->getImageURL('print.gif');
202             $the_title .= <<<EOHTML
203 <a href="javascript:void window.open('index.php?{$GLOBALS['request_string']}','printwin','menubar=1,status=0,resizable=1,scrollbars=1,toolbar=0,location=1')" class='utilsLink'>
204 <img src="{$printImageURL}" alt="{$GLOBALS['app_strings']['LNK_PRINT']}"></a>
205 <a href="javascript:void window.open('index.php?{$GLOBALS['request_string']}','printwin','menubar=1,status=0,resizable=1,scrollbars=1,toolbar=0,location=1')" class='utilsLink'>
206 {$GLOBALS['app_strings']['LNK_PRINT']}
207 </a>
208 EOHTML;
209         }
210         $helpImageURL = SugarThemeRegistry::current()->getImageURL('help.gif');
211         $the_title .= <<<EOHTML
212 &nbsp;
213 <a href="index.php?module=Administration&action=SupportPortal&view=documentation&version={$sugar_version}&edition={$sugar_flavor}&lang={$current_language}&help_module={$module}&help_action={$action}&key={$server_unique_key}" class="utilsLink" target="_blank">
214 <img src='{$helpImageURL}' alt='{$GLOBALS['app_strings']['LNK_HELP']}'></a>
215 <a href="index.php?module=Administration&action=SupportPortal&view=documentation&version={$sugar_version}&edition={$sugar_flavor}&lang={$current_language}&help_module={$module}&help_action={$action}&key={$server_unique_key}" class="utilsLink" target="_blank">
216 {$GLOBALS['app_strings']['LNK_HELP']}
217 </a>
218 EOHTML;
219         $the_title .= '</span>';
220     }
221     
222     $the_title .= "</div>\n";
223     return $the_title;
224 }
225
226 /**
227  * Handles displaying the header for classic view modules
228  *
229  * @param  $module      string  to next to the title.  Typically used for form buttons.
230  * @param array $params optional, params to display in the breadcrumb, overriding SugarView::_getModuleTitleParams()
231  * These should be in the form of array('label' => '<THE LABEL>', 'link' => '<HREF TO LINK TO>');
232  * the first breadcrumb should be index at 0, and built from there e.g.
233  * <code>
234  * array(
235  *    '<a href="index.php?module=Contacts&action=index">Contacts</a>',
236  *    '<a href="index.php?module=Contacts&action=DetailView&record=123">John Smith</a>',
237  *    'Edit',
238  *    );
239  * </code>
240  * would display as:
241  * <a href='index.php?module=Contacts&action=index'>Contacts</a> >> <a href='index.php?module=Contacts&action=DetailView&record=123'>John Smith</a> >> Edit   
242  * @param  $show_help    boolean which determines if the print and help links are shown.
243  * @return string HTML
244  */
245 function getClassicModuleTitle(
246     $module, 
247     $params, 
248     $show_help)
249 {
250         $module_title = '';
251         $count = count($params);
252         $index = 0;
253         foreach($params as $parm){
254                 $index++;
255                 $module_title .= $parm;
256                 if($index < $count){
257                 $module_title .= "<span class='pointer'>&raquo;</span>";
258             }
259         }
260         return get_module_title($module, $module_title, $show_help, true);
261 }
262
263 /**
264  * Create a header for a popup.
265  *
266  * @todo refactor this into the base Popup_Picker class
267  *
268  * @param  $theme string the name of the current theme, ignorred to use SugarThemeRegistry::current() instead.
269  * @return string HTML
270  */
271 function insert_popup_header(
272     $theme = null
273     )
274 {
275     global $app_strings, $sugar_config;
276     
277     $charset = isset($app_strings['LBL_CHARSET']) 
278         ? $app_strings['LBL_CHARSET'] : $sugar_config['default_charset'];
279     
280     $themeCSS = SugarThemeRegistry::current()->getCSS();
281     
282     echo <<<EOHTML
283 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
284 <html>
285 <head>
286 <meta http-equiv="Content-Type" content="text/html; charset="{$charset}">
287 <title>{$app_strings['LBL_BROWSER_TITLE']}</title>
288 {$themeCSS}
289 EOHTML;
290     echo '<script type="text/javascript" src="' . getJSPath('include/javascript/sugar_grp1_yui.js') . '"></script>';
291     echo '<script type="text/javascript" src="' . getJSPath('include/javascript/sugar_grp1.js') . '"></script>';
292     echo <<<EOHTML
293 </head>
294 <body style="margin: 10px">
295 EOHTML;
296 }
297
298 /**
299  * Create a footer for a popup.
300  *
301  * @todo refactor this into the base Popup_Picker class
302  *
303  * @return string HTML
304  */
305 function insert_popup_footer()
306 {
307     echo <<<EOQ
308 </body>
309 </html>
310 EOQ;
311 }