]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/utils/layout_utils.php
Release 6.2.0
[Github/sugarcrm.git] / include / utils / layout_utils.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM Community Edition 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_create,
175     $count=0
176     )
177 {
178     global $sugar_version, $sugar_flavor, $server_unique_key, $current_language, $action;
179     global $app_strings;
180     
181     $the_title = "<div class='moduleTitle'>\n<h2>";
182     $module = preg_replace("/ /","",$module);
183     $iconPath = "";
184     if(is_file(SugarThemeRegistry::current()->getImageURL('icon_'.$module.'_32.png',false)))
185     {
186         $iconPath = SugarThemeRegistry::current()->getImageURL('icon_'.$module.'_32.png');
187     } else if (is_file(SugarThemeRegistry::current()->getImageURL('icon_'.ucfirst($module).'_32.png',false)))
188     {
189         $iconPath = SugarThemeRegistry::current()->getImageURL('icon_'.ucfirst($module).'_32.png');
190     }
191     if (!empty($iconPath)) {
192         if (SugarThemeRegistry::current()->directionality == "ltr") {
193                 $the_title .= "<a href='index.php?module={$module}&action=index'><img src='{$iconPath}' " 
194                             . "alt='".$module."' title='".$module."' align='absmiddle'></a>";
195                 $the_title .= ($count >= 1) ? SugarView::getBreadCrumbSymbol() : "";
196                 $the_title .=  $module_title;   
197         } else {
198                 $the_title .= $module_title;
199                 $the_title .= ($count > 1) ? SugarView::getBreadCrumbSymbol() : "";
200                 $the_title .= "<a href='index.php?module={$module}&action=index'><img src='{$iconPath}' " 
201                             . "alt='".$module."' title='".$module."' align='absmiddle'></a>";
202         }
203     } else {
204                 $the_title .= $module_title;
205         }
206     $the_title .= "</h2>\n";
207     
208     if ($show_create) {
209         $the_title .= "<span class='utils'>";
210         $createRecordURL = SugarThemeRegistry::current()->getImageURL('create-record.gif');
211         $the_title .= <<<EOHTML
212 &nbsp;
213 <a href="index.php?module={$module}&action=EditView&return_module={$module}&return_action=DetailView" class="utilsLink">
214 <img src='{$createRecordURL}' alt='{$GLOBALS['app_strings']['LNK_CREATE']}'></a>
215 <a href="index.php?module={$module}&action=EditView&return_module={$module}&return_action=DetailView" class="utilsLink">
216 {$GLOBALS['app_strings']['LNK_CREATE']}
217 </a>
218 EOHTML;
219
220         $the_title .= '</span>';
221     }
222     
223     $the_title .= "</div>\n";
224     return $the_title;
225 }
226
227 /**
228  * Handles displaying the header for classic view modules
229  *
230  * @param  $module      string  to next to the title.  Typically used for form buttons.
231  * @param array $params optional, params to display in the breadcrumb, overriding SugarView::_getModuleTitleParams()
232  * These should be in the form of array('label' => '<THE LABEL>', 'link' => '<HREF TO LINK TO>');
233  * the first breadcrumb should be index at 0, and built from there e.g.
234  * <code>
235  * array(
236  *    '<a href="index.php?module=Contacts&action=index">Contacts</a>',
237  *    '<a href="index.php?module=Contacts&action=DetailView&record=123">John Smith</a>',
238  *    'Edit',
239  *    );
240  * </code>
241  * would display as:
242  * <a href='index.php?module=Contacts&action=index'>Contacts</a> >> <a href='index.php?module=Contacts&action=DetailView&record=123'>John Smith</a> >> Edit   
243  * @param  $show_help    boolean which determines if the print and help links are shown.
244  * @return string HTML
245  */
246 function getClassicModuleTitle(
247     $module, 
248     $params, 
249     $show_create,
250     $index_url_override="")
251 {
252         global $sugar_version, $sugar_flavor, $server_unique_key, $current_language, $action;
253     global $app_strings;
254     
255         $module_title = '';
256         $count = count($params);
257         $index = 0;
258
259
260
261     $module = preg_replace("/ /","",$module);
262     $iconPath = "";
263     $the_title = "<div class='moduleTitle'>\n<h2>";
264     
265     
266     if(is_file(SugarThemeRegistry::current()->getImageURL('icon_'.$module.'_32.png',false)))
267     {
268         $iconPath = SugarThemeRegistry::current()->getImageURL('icon_'.$module.'_32.png');
269     } else if (is_file(SugarThemeRegistry::current()->getImageURL('icon_'.ucfirst($module).'_32.png',false)))
270     {
271         $iconPath = SugarThemeRegistry::current()->getImageURL('icon_'.ucfirst($module).'_32.png');
272     }
273     if (!empty($iconPath)) {
274         $url = (!empty($index_url_override)) ? $index_url_override : "index.php?module={$module}&action=index";
275         array_unshift ($params,"<a href='{$url}'><img src='{$iconPath}' " 
276                             . "alt='".$module."' title='".$module."' align='absmiddle'></a>");
277         }
278         
279         $new_params = array();
280         $i = 0;
281         foreach ($params as $value) {
282           if ((!is_null($value)) && ($value !== "")) {
283             $new_params[$i] = $value;
284             $i++;
285           }
286         } 
287
288
289         if(SugarThemeRegistry::current()->directionality == "rtl") {
290                 $new_params = array_reverse($new_params);
291         }
292         
293         $module_title = join(SugarView::getBreadCrumbSymbol(),$new_params);
294         
295         
296         
297     $the_title .= $module_title."</h2>\n";
298     
299     if ($show_create) {
300         $the_title .= "<span class='utils'>";
301         $createRecordURL = SugarThemeRegistry::current()->getImageURL('create-record.gif');
302         $the_title .= <<<EOHTML
303 &nbsp;
304 <a href="index.php?module={$module}&action=EditView&return_module={$module}&return_action=DetailView" class="utilsLink">
305 <img src='{$createRecordURL}' alt='{$GLOBALS['app_strings']['LNK_CREATE']}'></a>
306 <a href="index.php?module={$module}&action=EditView&return_module={$module}&return_action=DetailView" class="utilsLink">
307 {$GLOBALS['app_strings']['LNK_CREATE']}
308 </a>
309 EOHTML;
310
311         $the_title .= '</span>';
312     }
313     
314     $the_title .= "</div>\n";
315     return $the_title;
316     
317 }
318
319 /**
320  * Create a header for a popup.
321  *
322  * @todo refactor this into the base Popup_Picker class
323  *
324  * @param  $theme string the name of the current theme, ignorred to use SugarThemeRegistry::current() instead.
325  * @return string HTML
326  */
327 function insert_popup_header(
328     $theme = null
329     )
330 {
331     global $app_strings, $sugar_config;
332     
333     $charset = isset($app_strings['LBL_CHARSET']) 
334         ? $app_strings['LBL_CHARSET'] : $sugar_config['default_charset'];
335     
336     $themeCSS = SugarThemeRegistry::current()->getCSS();
337     
338     echo <<<EOHTML
339 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
340 <html>
341 <head>
342 <meta http-equiv="Content-Type" content="text/html; charset="{$charset}">
343 <title>{$app_strings['LBL_BROWSER_TITLE']}</title>
344 {$themeCSS}
345 EOHTML;
346     echo '<script type="text/javascript" src="' . getJSPath('include/javascript/sugar_grp1_yui.js') . '"></script>';
347     echo '<script type="text/javascript" src="' . getJSPath('include/javascript/sugar_grp1.js') . '"></script>';
348     echo <<<EOHTML
349 </head>
350 <body class="popupBody">
351 EOHTML;
352 }
353
354 /**
355  * Create a footer for a popup.
356  *
357  * @todo refactor this into the base Popup_Picker class
358  *
359  * @return string HTML
360  */
361 function insert_popup_footer()
362 {
363     echo <<<EOQ
364 </body>
365 </html>
366 EOQ;
367 }