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