]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/MVC/View/views/view.list.php
Release 6.4.0beta1
[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_once($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                         $_REQUEST[$search_key] = $GLOBALS['db']->quote($search_value);
86                     }
87                 }
88             }
89         }
90         if(!empty($_REQUEST['saved_search_select'])) {
91             if ($_REQUEST['saved_search_select']=='_none' || !empty($_REQUEST['button'])) {
92                 $_SESSION['LastSavedView'][$_REQUEST['module']] = '';
93                 unset($_REQUEST['saved_search_select']);
94                 unset($_REQUEST['saved_search_select_name']);
95
96                 //use the current search module, or the current module to clear out layout changes
97                 if(!empty($_REQUEST['search_module']) || !empty($_REQUEST['module'])){
98                     $mod = !empty($_REQUEST['search_module']) ? $_REQUEST['search_module'] : $_REQUEST['module'];
99                     global $current_user;
100                     //Reset the current display columns to default.
101                     $current_user->setPreference('ListViewDisplayColumns', array(), 0, $mod);
102                 }
103             }
104             else if(empty($_REQUEST['button']) && (empty($_REQUEST['clear_query']) || $_REQUEST['clear_query']!='true')) {
105                 $this->saved_search = loadBean('SavedSearch');
106                 $this->saved_search->retrieveSavedSearch($_REQUEST['saved_search_select']);
107                 $this->saved_search->populateRequest();
108             }
109             elseif(!empty($_REQUEST['button'])) { // click the search button, after retrieving from saved_search
110                 $_SESSION['LastSavedView'][$_REQUEST['module']] = '';
111                 unset($_REQUEST['saved_search_select']);
112                 unset($_REQUEST['saved_search_select_name']);
113             }
114         }
115         $this->storeQuery = new StoreQuery();
116         if(!isset($_REQUEST['query'])){
117             $this->storeQuery->loadQuery($this->module);
118             $this->storeQuery->populateRequest();
119         }else{
120             $this->storeQuery->saveFromRequest($this->module);
121         }
122
123         $this->seed = $this->bean;
124
125         $displayColumns = array();
126         if(!empty($_REQUEST['displayColumns'])) {
127             foreach(explode('|', $_REQUEST['displayColumns']) as $num => $col) {
128                 if(!empty($this->listViewDefs[$module][$col]))
129                     $displayColumns[$col] = $this->listViewDefs[$module][$col];
130             }
131         }
132         else {
133             foreach($this->listViewDefs[$module] as $col => $this->params) {
134                 if(!empty($this->params['default']) && $this->params['default'])
135                     $displayColumns[$col] = $this->params;
136             }
137         }
138         $this->params = array('massupdate' => true);
139         if(!empty($_REQUEST['orderBy'])) {
140             $this->params['orderBy'] = $_REQUEST['orderBy'];
141             $this->params['overrideOrder'] = true;
142             if(!empty($_REQUEST['sortOrder'])) $this->params['sortOrder'] = $_REQUEST['sortOrder'];
143         }
144         $this->lv->displayColumns = $displayColumns;
145
146         $this->module = $module;
147
148         $this->prepareSearchForm();
149
150         if(isset($this->options['show_title']) && $this->options['show_title']) {
151             $moduleName = isset($this->seed->module_dir) ? $this->seed->module_dir : $GLOBALS['mod_strings']['LBL_MODULE_NAME'];
152             echo $this->getModuleTitle(true);
153         }
154     }
155
156     function listViewProcess(){
157         $this->processSearchForm();
158         $this->lv->searchColumns = $this->searchForm->searchColumns;
159
160         if(!$this->headers)
161             return;
162         if(empty($_REQUEST['search_form_only']) || $_REQUEST['search_form_only'] == false){
163             $this->lv->ss->assign("SEARCH",true);
164             $this->lv->setup($this->seed, 'include/ListView/ListViewGeneric.tpl', $this->where, $this->params);
165             $savedSearchName = empty($_REQUEST['saved_search_select_name']) ? '' : (' - ' . $_REQUEST['saved_search_select_name']);
166             echo $this->lv->display();
167         }
168     }
169     function prepareSearchForm(){
170     $this->searchForm = null;
171
172         //search
173         $view = 'basic_search';
174         if(!empty($_REQUEST['search_form_view']) && $_REQUEST['search_form_view'] == 'advanced_search')
175             $view = $_REQUEST['search_form_view'];
176         $this->headers = true;
177         if(!empty($_REQUEST['search_form_only']) && $_REQUEST['search_form_only'])
178             $this->headers = false;
179         elseif(!isset($_REQUEST['search_form']) || $_REQUEST['search_form'] != 'false') {
180             if(isset($_REQUEST['searchFormTab']) && $_REQUEST['searchFormTab'] == 'advanced_search') {
181                 $view = 'advanced_search';
182             }else {
183                 $view = 'basic_search';
184             }
185         }
186
187         $this->use_old_search = true;
188         if ((file_exists('modules/' . $this->module . '/SearchForm.html')
189                 && !file_exists('modules/' . $this->module . '/metadata/searchdefs.php'))
190             || (file_exists('custom/modules/' . $this->module . '/SearchForm.html')
191                 && !file_exists('custom/modules/' . $this->module . '/metadata/searchdefs.php'))){
192             require_once('include/SearchForm/SearchForm.php');
193             $this->searchForm = new SearchForm($this->module, $this->seed);
194         }else{
195             $this->use_old_search = false;
196             require_once('include/SearchForm/SearchForm2.php');
197
198             if(file_exists('custom/modules/'.$this->module.'/metadata/metafiles.php')){
199                 require('custom/modules/'.$this->module.'/metadata/metafiles.php');
200             }elseif(file_exists('modules/'.$this->module.'/metadata/metafiles.php')){
201                 require('modules/'.$this->module.'/metadata/metafiles.php');
202             }
203
204 /*          if(!empty($metafiles[$this->module]['searchdefs']))
205                 require_once($metafiles[$this->module]['searchdefs']);
206             elseif(file_exists('modules/'.$this->module.'/metadata/searchdefs.php'))
207                 require_once('modules/'.$this->module.'/metadata/searchdefs.php');
208 */
209
210             if (file_exists('custom/modules/'.$this->module.'/metadata/searchdefs.php'))
211             {
212                 require_once('custom/modules/'.$this->module.'/metadata/searchdefs.php');
213             }
214             elseif (!empty($metafiles[$this->module]['searchdefs']))
215             {
216                 require_once($metafiles[$this->module]['searchdefs']);
217             }
218             elseif (file_exists('modules/'.$this->module.'/metadata/searchdefs.php'))
219             {
220                 require_once('modules/'.$this->module.'/metadata/searchdefs.php');
221             }
222
223
224             if(!empty($metafiles[$this->module]['searchfields']))
225                 require_once($metafiles[$this->module]['searchfields']);
226             elseif(file_exists('modules/'.$this->module.'/metadata/SearchFields.php'))
227                 require_once('modules/'.$this->module.'/metadata/SearchFields.php');
228
229             if(file_exists('custom/modules/'.$this->module.'/metadata/SearchFields.php')){
230                 require_once('custom/modules/'.$this->module.'/metadata/SearchFields.php');
231             }
232
233
234             $this->searchForm = new SearchForm($this->seed, $this->module, $this->action);
235             $this->searchForm->setup($searchdefs, $searchFields, 'include/SearchForm/tpls/SearchFormGeneric.tpl', $view, $this->listViewDefs);
236             $this->searchForm->lv = $this->lv;
237         }
238     }
239     function processSearchForm(){
240         if(isset($_REQUEST['query']))
241         {
242             // we have a query
243             if(!empty($_SERVER['HTTP_REFERER']) && preg_match('/action=EditView/', $_SERVER['HTTP_REFERER'])) { // from EditView cancel
244                 $this->searchForm->populateFromArray($this->storeQuery->query);
245             }
246             else {
247                 $this->searchForm->populateFromRequest();
248             }
249
250             $where_clauses = $this->searchForm->generateSearchWhere(true, $this->seed->module_dir);
251
252             if (count($where_clauses) > 0 )$this->where = '('. implode(' ) AND ( ', $where_clauses) . ')';
253             $GLOBALS['log']->info("List View Where Clause: $this->where");
254         }
255         if($this->use_old_search){
256             switch($view) {
257                 case 'basic_search':
258                     $this->searchForm->setup();
259                     $this->searchForm->displayBasic($this->headers);
260                     break;
261                  case 'advanced_search':
262                     $this->searchForm->setup();
263                     $this->searchForm->displayAdvanced($this->headers);
264                     break;
265                  case 'saved_views':
266                     echo $this->searchForm->displaySavedViews($this->listViewDefs, $this->lv, $this->headers);
267                    break;
268             }
269         }else{
270             echo $this->searchForm->display($this->headers);
271         }
272     }
273     function preDisplay(){
274         $this->lv = new ListViewSmarty();
275     }
276     function display(){
277         if(!$this->bean || !$this->bean->ACLAccess('list')){
278             ACLController::displayNoAccess();
279         } else {
280             $this->listViewPrepare();
281             $this->listViewProcess();
282         }
283     }
284 }
285 ?>