]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/ModuleBuilder/views/view.listview.php
Release 6.1.5
[Github/sugarcrm.git] / modules / ModuleBuilder / views / view.listview.php
1 <?php
2 if (! defined ( 'sugarEntry' ) || ! sugarEntry)
3     die ( 'Not A Valid Entry Point' ) ;
4 /*********************************************************************************
5  * SugarCRM is a customer relationship management program developed by
6  * SugarCRM, Inc. Copyright (C) 2004-2011 SugarCRM Inc.
7  * 
8  * This program is free software; you can redistribute it and/or modify it under
9  * the terms of the GNU Affero General Public License version 3 as published by the
10  * Free Software Foundation with the addition of the following permission added
11  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
12  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
13  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
14  * 
15  * This program is distributed in the hope that it will be useful, but WITHOUT
16  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
18  * details.
19  * 
20  * You should have received a copy of the GNU Affero General Public License along with
21  * this program; if not, see http://www.gnu.org/licenses or write to the Free
22  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23  * 02110-1301 USA.
24  * 
25  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
26  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
27  * 
28  * The interactive user interfaces in modified source and object code versions
29  * of this program must display Appropriate Legal Notices, as required under
30  * Section 5 of the GNU Affero General Public License version 3.
31  * 
32  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
33  * these Appropriate Legal Notices must retain the display of the "Powered by
34  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
35  * technical reasons, the Appropriate Legal Notices must display the words
36  * "Powered by SugarCRM".
37  ********************************************************************************/
38
39
40
41
42
43 require_once ('include/MVC/View/views/view.edit.php') ;
44
45 require_once 'modules/ModuleBuilder/parsers/constants.php' ;
46 require_once ('include/SubPanel/SubPanel.php') ;
47
48 class ViewListView extends ViewEdit
49 {
50     /**
51          * @see SugarView::_getModuleTitleParams()
52          */
53         protected function _getModuleTitleParams()
54         {
55             global $mod_strings;
56             
57         return array(
58            translate('LBL_MODULE_NAME','Administration'),
59            $mod_strings['LBL_MODULEBUILDER'],
60            );
61     }
62
63     /*
64      * Pseudo-constructor to enable subclasses to call a parent's constructor without knowing the parent in PHP4
65      */
66     function __construct()
67     {
68         $this->editModule = $_REQUEST [ 'view_module' ] ;
69         $this->editLayout = $_REQUEST [ 'view' ] ;
70         $this->subpanel = (! empty ( $_REQUEST [ 'subpanel' ] )) ? $_REQUEST [ 'subpanel' ] : false ;
71         $this->subpanelLabel = (! empty ( $_REQUEST [ 'subpanelLabel' ] )) ? $_REQUEST [ 'subpanelLabel' ] : false ;
72
73         $this->fromModuleBuilder = ! empty ( $_REQUEST [ 'view_package' ] ) ;
74         if (! $this->fromModuleBuilder)
75         {
76             $moduleNames = array_change_key_case ( $GLOBALS['app_list_strings'] [ 'moduleList' ] ) ;
77             $this->translatedEditModule = $moduleNames [ strtolower ( $this->editModule ) ] ;
78         }
79     }
80
81     // DO NOT REMOVE - overrides parent ViewEdit preDisplay() which attempts to load a bean for a non-existent module
82     function preDisplay ()
83     {
84     }
85
86     function display ($preview = false)
87     {
88
89         $packageName = (! empty ( $_REQUEST [ 'view_package' ] )) ? $_REQUEST [ 'view_package' ] : null ;
90         $subpanelName = (! empty ( $_REQUEST [ 'subpanel' ] )) ? $_REQUEST [ 'subpanel' ] : null ;
91         require_once 'modules/ModuleBuilder/parsers/ParserFactory.php' ;
92         $parser = ParserFactory::getParser (  $this->editLayout , $this->editModule , $packageName, $subpanelName ) ;
93         $smarty = $this->constructSmarty ( $parser ) ;
94
95         if ($preview)
96         {
97             echo $smarty->fetch ( "modules/ModuleBuilder/tpls/Preview/listView.tpl" ) ;
98         } else
99         {
100             $ajax = $this->constructAjax () ;
101             $ajax->addSection ( 'center', $this->translatedViewType, $smarty->fetch ( "modules/ModuleBuilder/tpls/listView.tpl" ) ) ;
102
103             echo $ajax->getJavascript () ;
104         }
105     }
106
107     function constructAjax ()
108     {
109         require_once ('modules/ModuleBuilder/MB/AjaxCompose.php') ;
110         $ajax = new AjaxCompose ( ) ;
111
112         $layoutLabel = 'LBL_LAYOUTS' ;
113         $layoutView = 'layouts' ;
114
115
116         $labels = array (
117                                 MB_LISTVIEW => 'LBL_LISTVIEW' ,
118                                 ) ;
119         $translatedViewType = '' ;
120                 if ( isset ( $labels [ strtolower ( $this->editLayout ) ] ) )
121                         $translatedViewType = translate ( $labels [ strtolower( $this->editLayout ) ] , 'ModuleBuilder' ) ;
122                 $this->translatedViewType = $translatedViewType;
123
124         if ($this->fromModuleBuilder)
125         {
126             $ajax->addCrumb ( translate ( 'LBL_MODULEBUILDER', 'ModuleBuilder' ), 'ModuleBuilder.main("mb")' ) ;
127             $ajax->addCrumb ( $_REQUEST [ 'view_package' ], 'ModuleBuilder.getContent("module=ModuleBuilder&action=package&package=' . $_REQUEST [ 'view_package' ] . '")' ) ;
128             $ajax->addCrumb ( $this->editModule, 'ModuleBuilder.getContent("module=ModuleBuilder&action=module&view_package=' . $_REQUEST [ 'view_package' ] . '&view_module=' . $_REQUEST [ 'view_module' ] . '")' ) ;
129             if ($this->subpanel != "")
130             {
131                 $ajax->addCrumb ( translate ( 'LBL_AVAILABLE_SUBPANELS', 'ModuleBuilder' ), '' ) ;
132                 if ($this->subpanelLabel)
133                 {
134                     $ajax->addCrumb ( $this->subpanelLabel, '' ) ;
135                     $this->translatedViewType = $this->subpanelLabel . "&nbsp;" . translate("LBL_SUBPANEL", "ModuleBuilder");
136                 } else
137                 {
138                     $ajax->addCrumb ( $this->subpanel, '' ) ;
139                     $this->translatedViewType = translate("LBL_SUBPANEL", "ModuleBuilder");
140                 }
141             } else
142             {
143                 $ajax->addCrumb ( translate ( $layoutLabel, 'ModuleBuilder' ), 'ModuleBuilder.getContent("module=ModuleBuilder&MB=true&action=wizard&view_module=' . $_REQUEST [ 'view_module' ] . '&view_package=' . $_REQUEST [ 'view_package' ] . '")' ) ;
144                 $ajax->addCrumb ( $translatedViewType, '' ) ;
145             }
146         } else
147         {
148             $ajax->addCrumb ( translate ( 'LBL_STUDIO', 'ModuleBuilder' ), 'ModuleBuilder.getContent("module=ModuleBuilder&action=wizard")' ) ;
149             $ajax->addCrumb ( $this->translatedEditModule, 'ModuleBuilder.getContent("module=ModuleBuilder&action=wizard&view_module=' . $this->editModule . '")' ) ;
150
151             if ($this->subpanel)
152             {
153                 $ajax->addCrumb ( translate ( 'LBL_SUBPANELS', 'ModuleBuilder' ), 'ModuleBuilder.getContent("module=ModuleBuilder&action=wizard&view=subpanels&view_module=' . $this->editModule . '")' ) ;
154                 if ($this->subpanelLabel)
155                 {
156                     $ajax->addCrumb ( $this->subpanelLabel, '' ) ;
157                     $this->translatedViewType = $this->subpanelLabel . "&nbsp;" . translate("LBL_SUBPANEL", "ModuleBuilder");
158                 } else
159                 {
160                     $ajax->addCrumb ( $this->subpanel, '' ) ;
161                     $this->translatedViewType = translate("LBL_SUBPANEL", "ModuleBuilder");
162                 }
163             } else
164             {
165                 $ajax->addCrumb ( translate ( $layoutLabel, 'ModuleBuilder' ), 'ModuleBuilder.getContent("module=ModuleBuilder&action=wizard&view='.$layoutView.'&view_module=' . $this->editModule . '")' ) ;
166                 $ajax->addCrumb ( $translatedViewType, '' ) ;
167             }
168         }
169         return $ajax ;
170     }
171
172     function constructSmarty ($parser)
173     {
174         $smarty = new Sugar_Smarty ( ) ;
175         $smarty->assign ( 'translate', true ) ;
176         $smarty->assign ( 'language', $parser->getLanguage () ) ;
177
178         $smarty->assign ( 'view', $this->editLayout ) ;
179         $smarty->assign ( 'module', "ModuleBuilder" ) ;
180         $smarty->assign ( 'action', 'listViewSave' ) ;
181         $smarty->assign ( 'view_module', $this->editModule ) ;
182         if (!empty ( $this->subpanel ) )
183         {
184             $smarty->assign ( 'subpanel', $this->subpanel ) ;
185             if (!$this->fromModuleBuilder) {
186                 $subList =  SubPanel::getModuleSubpanels ( $this->editModule);
187                 $subRef = $subList[strtolower($this->subpanel)];
188                 $subTitleKey = !empty($subRef) ? $subRef : "LBL_" . strtoupper($this->subpanel) . "_SUBPANEL_TITLE";
189                 $subTitle    = !empty($subRef) ? translate($subTitleKey, $this->editModule) : UCfirst($this->subpanel);
190                 $smarty->assign ( 'subpanel_label', $subTitleKey ) ;
191                 $smarty->assign ( 'subpanel_title', $subTitle ) ;
192             }
193         }
194         $helpName = $this->subpanel ? 'subPanelEditor' : 'listViewEditor';
195         $smarty->assign ( 'helpName', $helpName ) ;
196         $smarty->assign ( 'helpDefault', 'modify' ) ;
197
198         $smarty->assign ( 'title', $this->_constructTitle () ) ;
199         $groups = array ( ) ;
200         foreach ( $parser->columns as $column => $function )
201         {
202             // update this so that each field has a properties set
203             // properties are name, value, title (optional)
204             $groups [ $GLOBALS [ 'mod_strings' ] [ $column ] ] = $parser->$function () ; // call the parser functions to populate the list view columns, by default 'default', 'available' and 'hidden'
205         }
206         foreach ( $groups as $groupKey => $group )
207         {
208             foreach ( $group as $fieldKey => $field )
209             {
210                 if (isset ( $field [ 'width' ] ))
211                 {
212                     if (substr ( $field [ 'width' ], - 1, 1 ) == '%')
213                     {
214
215                         $groups [ $groupKey ] [ $fieldKey ] [ 'width' ] = substr ( $field [ 'width' ], 0, strlen ( $field [ 'width' ] ) - 1 ) ;
216                     }
217                 }
218             }
219         }
220
221         $smarty->assign ( 'groups', $groups ) ;
222         $smarty->assign('from_mb', $this->fromModuleBuilder);
223
224         global $image_path ;
225         $imageSave = SugarThemeRegistry::current()->getImage('studio_save') ;
226 //        $imageHelp = SugarThemeRegistry::current()->getImage('help') ;
227
228         $history = $parser->getHistory () ;
229
230         $histaction = "ModuleBuilder.history.browse(\"{$this->editModule}\", \"{$this->editLayout}\")" ;
231         if ($this->subpanel)
232             $histaction = "ModuleBuilder.history.browse(\"{$this->editModule}\", \"{$this->editLayout}\", \"{$this->subpanel}\")" ;
233
234         $restoreAction = "onclick='ModuleBuilder.history.revert(\"{$this->editModule}\", \"{$this->editLayout}\", \"{$history->getLast()}\", \"\")'";
235         if ($this->subpanel)
236             $restoreAction = "onclick='ModuleBuilder.history.revert(\"{$this->editModule}\", \"{$this->editLayout}\", \"{$history->getLast()}\", \"{$this->subpanel}\")'";
237
238         $buttons = array ( ) ;
239         $buttons [] = array ( 'id' =>'savebtn', 'name' => 'savebtn' , 'image' => $imageSave , 'text' => (! $this->fromModuleBuilder)?$GLOBALS [ 'mod_strings' ] [ 'LBL_BTN_SAVEPUBLISH' ]: $GLOBALS [ 'mod_strings' ] [ 'LBL_BTN_SAVE' ], 'actionScript' => "onclick='studiotabs.generateGroupForm(\"edittabs\");if (countListFields()==0) ModuleBuilder.layoutValidation.popup() ; else ModuleBuilder.handleSave(\"edittabs\" )'" ) ;
240         $buttons [] = array ( 'id' => 'spacer' , 'width' => '50px' ) ;
241         $buttons [] = array ( 'id' =>'historyBtn',       'name' => 'historyBtn' , 'text' => translate ( 'LBL_HISTORY' ) , 'actionScript' => "onclick='$histaction'" ) ;
242         $buttons [] = array ( 'id' => 'historyDefault' , 'name' => 'historyDefault',  'text' => translate ( 'LBL_RESTORE_DEFAULT' ) , 'actionScript' => $restoreAction ) ;
243
244         $smarty->assign ( 'buttons', $this->_buildImageButtons ( $buttons ) ) ;
245
246         $editImage = SugarThemeRegistry::current()->getImage('edit_inline') ;
247         $smarty->assign ( 'editImage', $editImage ) ;
248         $deleteImage = SugarThemeRegistry::current()->getImage('delete_inline') ;
249         $smarty->assign ( 'deleteImage', $deleteImage ) ;
250         $smarty->assign ( 'MOD', $GLOBALS [ 'mod_strings' ] ) ;
251
252         if ($this->fromModuleBuilder)
253         {
254             $smarty->assign ( 'MB', true ) ;
255             $smarty->assign ( 'view_package', $_REQUEST [ 'view_package' ] ) ;
256             $mb = new ModuleBuilder ( ) ;
257             $module = & $mb->getPackageModule ( $_REQUEST [ 'view_package' ], $this->editModule ) ;
258             $smarty->assign('current_mod_strings', $module->getModStrings());
259             if ($this->subpanel)
260             {
261                 if (isset ( $_REQUEST [ 'local' ] ))
262                 {
263                     $smarty->assign ( 'local', '1' ) ;
264                 }
265                 $smarty->assign ( "subpanel", $this->subpanel ) ;
266             } else
267             {
268                 $smarty->assign ( 'description', $GLOBALS [ 'mod_strings' ] [ 'LBL_LISTVIEW_DESCRIPTION' ] ) ;
269
270             }
271
272         } else
273         {
274             if ($this->subpanel)
275             {
276                 $smarty->assign ( "subpanel", "$this->subpanel" ) ;
277             } else
278             {
279                 $smarty->assign ( 'description', $GLOBALS [ 'mod_strings' ] [ 'LBL_LISTVIEW_DESCRIPTION' ] ) ;
280             }
281         }
282
283         return $smarty ;
284     }
285
286     function _constructTitle ()
287
288     {
289
290         global $app_list_strings ;
291
292         if ($this->fromModuleBuilder)
293         {
294             $title = $this->editModule ;
295             if ($this->subpanel != "")
296             {
297                 $title .= ":$this->subpanel" ;
298             }
299         } else
300         {
301             $title = ($this->subpanel) ? ':' . $this->subpanel : $app_list_strings [ 'moduleList' ] [ $this->editModule ] ;
302         }
303         return $GLOBALS [ 'mod_strings' ] [ 'LBL_LISTVIEW_EDIT' ] . ':&nbsp;' . $title ;
304
305     }
306
307     function _buildImageButtons ($buttons , $horizontal = true)
308     {
309         $text = '<table cellspacing=2><tr>' ;
310         foreach ( $buttons as $button )
311         {
312             if (empty($button['id'])) {
313                 $button['id'] = $button['name'];
314             }
315             if (! $horizontal)
316             {
317                 $text .= '</tr><tr>' ;
318             }
319             if ($button['id'] == "spacer") {
320                 $text .= "<td style='width:{$button['width']}'> </td>";
321                 continue;
322             }
323
324             if (! empty ( $button [ 'plain' ] ))
325             {
326                 $text .= <<<EOQ
327                      <td><input name={$button['name']} id={$button['id']} class="button" type="button" valign='center' {$button['actionScript']}
328 EOQ;
329
330             } else
331             {
332                 $text .= <<<EOQ
333                   <td><input name={$button['name']} id={$button['id']} class="button" type="button" valign='center' style='cursor:default'  {$button['actionScript']}
334 EOQ;
335             }
336             $text .= "value=\"{$button['text']}\"/></td>" ;
337         }
338         $text .= '</tr></table>' ;
339         return $text ;
340     }
341 }