]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/MVC/View/views/view.list.php
Release 6.4.0
[Github/sugarcrm.git] / include / MVC / View / views / view.list.php
1 <?php
2 /*********************************************************************************
3  * SugarCRM Community Edition is a customer relationship management program developed by
4  * SugarCRM, Inc. Copyright (C) 2004-2011 SugarCRM Inc.
5  * 
6  * This program is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU Affero General Public License version 3 as published by the
8  * Free Software Foundation with the addition of the following permission added
9  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
10  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
11  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
12  * 
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
16  * details.
17  * 
18  * You should have received a copy of the GNU Affero General Public License along with
19  * this program; if not, see http://www.gnu.org/licenses or write to the Free
20  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21  * 02110-1301 USA.
22  * 
23  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
24  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
25  * 
26  * The interactive user interfaces in modified source and object code versions
27  * of this program must display Appropriate Legal Notices, as required under
28  * Section 5 of the GNU Affero General Public License version 3.
29  * 
30  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
31  * these Appropriate Legal Notices must retain the display of the "Powered by
32  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
33  * technical reasons, the Appropriate Legal Notices must display the words
34  * "Powered by SugarCRM".
35  ********************************************************************************/
36
37 require_once('include/MVC/View/SugarView.php');
38
39 require_once('include/ListView/ListViewSmarty.php');
40
41 require_once('modules/MySettings/StoreQuery.php');
42 class ViewList extends SugarView{
43     var $type ='list';
44     var $lv;
45     var $searchForm;
46     var $use_old_search;
47     var $headers;
48     var $seed;
49     var $params;
50     var $listViewDefs;
51     var $storeQuery;
52     var $where = '';
53     function ViewList(){
54         parent::SugarView();
55     }
56
57
58     function oldSearch(){
59
60     }
61     function newSearch(){
62
63     }
64
65     function listViewPrepare(){
66         $module = $GLOBALS['module'];
67
68         $metadataFile = $this->getMetaDataFile();
69
70         if( !file_exists($metadataFile) )
71             sugar_die($GLOBALS['app_strings']['LBL_NO_ACTION'] );
72
73         require($metadataFile);
74         $this->listViewDefs = $listViewDefs;
75
76         if(!empty($this->bean->object_name) && isset($_REQUEST[$module.'2_'.strtoupper($this->bean->object_name).'_offset'])) {//if you click the pagination button, it will poplate the search criteria here
77             if(!empty($_REQUEST['current_query_by_page'])) {//The code support multi browser tabs pagination
78                 $blockVariables = array('mass', 'uid', 'massupdate', 'delete', 'merge', 'selectCount', 'request_data', 'current_query_by_page',$module.'2_'.strtoupper($this->bean->object_name).'_ORDER_BY' );
79                 if(isset($_REQUEST['lvso'])){
80                     $blockVariables[] = 'lvso';
81                 }
82                 $current_query_by_page = unserialize(base64_decode($_REQUEST['current_query_by_page']));
83                 foreach($current_query_by_page as $search_key=>$search_value) {
84                     if($search_key != $module.'2_'.strtoupper($this->bean->object_name).'_offset' && !in_array($search_key, $blockVariables)) {
85                         if (!is_array($search_value)) {
86                             $_REQUEST[$search_key] = $GLOBALS['db']->quote($search_value);
87                         }
88                         else {
89                             foreach ($search_value as $key=>&$val) {
90                                 $val = $GLOBALS['db']->quote($val);
91                             }
92                             $_REQUEST[$search_key] = $search_value;
93                         }
94                     }
95                 }
96             }
97         }
98         if(!empty($_REQUEST['saved_search_select'])) {
99             if ($_REQUEST['saved_search_select']=='_none' || !empty($_REQUEST['button'])) {
100                 $_SESSION['LastSavedView'][$_REQUEST['module']] = '';
101                 unset($_REQUEST['saved_search_select']);
102                 unset($_REQUEST['saved_search_select_name']);
103
104                 //use the current search module, or the current module to clear out layout changes
105                 if(!empty($_REQUEST['search_module']) || !empty($_REQUEST['module'])){
106                     $mod = !empty($_REQUEST['search_module']) ? $_REQUEST['search_module'] : $_REQUEST['module'];
107                     global $current_user;
108                     //Reset the current display columns to default.
109                     $current_user->setPreference('ListViewDisplayColumns', array(), 0, $mod);
110                 }
111             }
112             else if(empty($_REQUEST['button']) && (empty($_REQUEST['clear_query']) || $_REQUEST['clear_query']!='true')) {
113                 $this->saved_search = loadBean('SavedSearch');
114                 $this->saved_search->retrieveSavedSearch($_REQUEST['saved_search_select']);
115                 $this->saved_search->populateRequest();
116             }
117             elseif(!empty($_REQUEST['button'])) { // click the search button, after retrieving from saved_search
118                 $_SESSION['LastSavedView'][$_REQUEST['module']] = '';
119                 unset($_REQUEST['saved_search_select']);
120                 unset($_REQUEST['saved_search_select_name']);
121             }
122         }
123         $this->storeQuery = new StoreQuery();
124         if(!isset($_REQUEST['query'])){
125             $this->storeQuery->loadQuery($this->module);
126             $this->storeQuery->populateRequest();
127         }else{
128             $this->storeQuery->saveFromRequest($this->module);
129         }
130
131         $this->seed = $this->bean;
132
133         $displayColumns = array();
134         if(!empty($_REQUEST['displayColumns'])) {
135             foreach(explode('|', $_REQUEST['displayColumns']) as $num => $col) {
136                 if(!empty($this->listViewDefs[$module][$col]))
137                     $displayColumns[$col] = $this->listViewDefs[$module][$col];
138             }
139         }
140         else {
141             foreach($this->listViewDefs[$module] as $col => $this->params) {
142                 if(!empty($this->params['default']) && $this->params['default'])
143                     $displayColumns[$col] = $this->params;
144             }
145         }
146         $this->params = array('massupdate' => true);
147         if(!empty($_REQUEST['orderBy'])) {
148             $this->params['orderBy'] = $_REQUEST['orderBy'];
149             $this->params['overrideOrder'] = true;
150             if(!empty($_REQUEST['sortOrder'])) $this->params['sortOrder'] = $_REQUEST['sortOrder'];
151         }
152         $this->lv->displayColumns = $displayColumns;
153
154         $this->module = $module;
155
156         $this->prepareSearchForm();
157
158         if(isset($this->options['show_title']) && $this->options['show_title']) {
159             $moduleName = isset($this->seed->module_dir) ? $this->seed->module_dir : $GLOBALS['mod_strings']['LBL_MODULE_NAME'];
160             echo $this->getModuleTitle(true);
161         }
162     }
163
164     function listViewProcess(){
165         $this->processSearchForm();
166         $this->lv->searchColumns = $this->searchForm->searchColumns;
167
168         if(!$this->headers)
169             return;
170         if(empty($_REQUEST['search_form_only']) || $_REQUEST['search_form_only'] == false){
171             $this->lv->ss->assign("SEARCH",true);
172             $this->lv->setup($this->seed, 'include/ListView/ListViewGeneric.tpl', $this->where, $this->params);
173             $savedSearchName = empty($_REQUEST['saved_search_select_name']) ? '' : (' - ' . $_REQUEST['saved_search_select_name']);
174             echo $this->lv->display();
175         }
176     }
177     function prepareSearchForm(){
178     $this->searchForm = null;
179
180         //search
181         $view = 'basic_search';
182         if(!empty($_REQUEST['search_form_view']) && $_REQUEST['search_form_view'] == 'advanced_search')
183             $view = $_REQUEST['search_form_view'];
184         $this->headers = true;
185         if(!empty($_REQUEST['search_form_only']) && $_REQUEST['search_form_only'])
186             $this->headers = false;
187         elseif(!isset($_REQUEST['search_form']) || $_REQUEST['search_form'] != 'false') {
188             if(isset($_REQUEST['searchFormTab']) && $_REQUEST['searchFormTab'] == 'advanced_search') {
189                 $view = 'advanced_search';
190             }else {
191                 $view = 'basic_search';
192             }
193         }
194
195         $this->use_old_search = true;
196         if ((file_exists('modules/' . $this->module . '/SearchForm.html')
197                 && !file_exists('modules/' . $this->module . '/metadata/searchdefs.php'))
198             || (file_exists('custom/modules/' . $this->module . '/SearchForm.html')
199                 && !file_exists('custom/modules/' . $this->module . '/metadata/searchdefs.php'))){
200             require_once('include/SearchForm/SearchForm.php');
201             $this->searchForm = new SearchForm($this->module, $this->seed);
202         }else{
203             $this->use_old_search = false;
204             require_once('include/SearchForm/SearchForm2.php');
205
206             if(file_exists('custom/modules/'.$this->module.'/metadata/metafiles.php')){
207                 require('custom/modules/'.$this->module.'/metadata/metafiles.php');
208             }elseif(file_exists('modules/'.$this->module.'/metadata/metafiles.php')){
209                 require('modules/'.$this->module.'/metadata/metafiles.php');
210             }
211
212 /*          if(!empty($metafiles[$this->module]['searchdefs']))
213                 require_once($metafiles[$this->module]['searchdefs']);
214             elseif(file_exists('modules/'.$this->module.'/metadata/searchdefs.php'))
215                 require_once('modules/'.$this->module.'/metadata/searchdefs.php');
216 */
217
218             if (file_exists('custom/modules/'.$this->module.'/metadata/searchdefs.php'))
219             {
220                 require('custom/modules/'.$this->module.'/metadata/searchdefs.php');
221             }
222             elseif (!empty($metafiles[$this->module]['searchdefs']))
223             {
224                 require($metafiles[$this->module]['searchdefs']);
225             }
226             elseif (file_exists('modules/'.$this->module.'/metadata/searchdefs.php'))
227             {
228                 require('modules/'.$this->module.'/metadata/searchdefs.php');
229             }
230
231
232             if(!empty($metafiles[$this->module]['searchfields']))
233                 require($metafiles[$this->module]['searchfields']);
234             elseif(file_exists('modules/'.$this->module.'/metadata/SearchFields.php'))
235                 require('modules/'.$this->module.'/metadata/SearchFields.php');
236
237             if(file_exists('custom/modules/'.$this->module.'/metadata/SearchFields.php')){
238                 require('custom/modules/'.$this->module.'/metadata/SearchFields.php');
239             }
240
241
242             $this->searchForm = new SearchForm($this->seed, $this->module, $this->action);
243             $this->searchForm->setup($searchdefs, $searchFields, 'include/SearchForm/tpls/SearchFormGeneric.tpl', $view, $this->listViewDefs);
244             $this->searchForm->lv = $this->lv;
245         }
246     }
247     function processSearchForm(){
248         if(isset($_REQUEST['query']))
249         {
250             // we have a query
251             if(!empty($_SERVER['HTTP_REFERER']) && preg_match('/action=EditView/', $_SERVER['HTTP_REFERER'])) { // from EditView cancel
252                 $this->searchForm->populateFromArray($this->storeQuery->query);
253             }
254             else {
255                 $this->searchForm->populateFromRequest();
256             }
257
258             $where_clauses = $this->searchForm->generateSearchWhere(true, $this->seed->module_dir);
259
260             if (count($where_clauses) > 0 )$this->where = '('. implode(' ) AND ( ', $where_clauses) . ')';
261             $GLOBALS['log']->info("List View Where Clause: $this->where");
262         }
263         if($this->use_old_search){
264             switch($view) {
265                 case 'basic_search':
266                     $this->searchForm->setup();
267                     $this->searchForm->displayBasic($this->headers);
268                     break;
269                  case 'advanced_search':
270                     $this->searchForm->setup();
271                     $this->searchForm->displayAdvanced($this->headers);
272                     break;
273                  case 'saved_views':
274                     echo $this->searchForm->displaySavedViews($this->listViewDefs, $this->lv, $this->headers);
275                    break;
276             }
277         }else{
278             echo $this->searchForm->display($this->headers);
279         }
280     }
281     function preDisplay(){
282         $this->lv = new ListViewSmarty();
283     }
284     function display(){
285         if(!$this->bean || !$this->bean->ACLAccess('list')){
286             ACLController::displayNoAccess();
287         } else {
288             $this->listViewPrepare();
289             $this->listViewProcess();
290         }
291     }
292 }
293 ?>