]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/generic/SugarWidgets/SugarWidgetFieldmultienum.php
Release 6.5.5
[Github/sugarcrm.git] / include / generic / SugarWidgets / SugarWidgetFieldmultienum.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-2012 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 class SugarWidgetFieldMultiEnum extends SugarWidgetFieldEnum {
41         public function queryFilternot_one_of(&$layout_def) {
42         $col_name = $this->_get_column_select($layout_def) . " NOT LIKE " ;
43         $query = array();
44         foreach ($layout_def['input_name0'] as $val)
45         {
46             $query[] = $col_name . $this->reporter->db->quoted('%' . $this->encodeMultienumCustom($layout_def, $val) . '%');
47         }
48         return '('. implode(' AND ', $query) .')';
49         }
50         
51     public function queryFilterone_of(&$layout_def) {
52         $col_name = $this->_get_column_select($layout_def) . " LIKE " ;
53         $query = array();
54         foreach ($layout_def['input_name0'] as $val)
55         {
56             $query[] = $col_name . $this->reporter->db->quoted('%' . $this->encodeMultienumCustom($layout_def, $val) . '%');
57         }
58         return '('. implode(' OR ', $query) .')';
59         }
60
61         public function queryFilteris($layout_def) {
62                 $input_name0 = $layout_def['input_name0'];
63                 if (is_array($layout_def['input_name0'])) {
64                         $input_name0 = $layout_def['input_name0'][0];
65                 }
66
67                 // Bug 40022
68                 // IS filter doesn't add the carets (^) to multienum custom field values  
69                 $input_name0 = $this->encodeMultienumCustom($layout_def, $input_name0);
70                 
71                 return $this->_get_column_select($layout_def)." = ".$this->reporter->db->quoted($input_name0)."\n";
72         }
73
74         public function queryFilteris_not($layout_def) {
75                 $input_name0 = $layout_def['input_name0'];
76                 if (is_array($layout_def['input_name0'])) {
77                         $input_name0 = $layout_def['input_name0'][0];
78                 }
79
80                 // Bug 50549
81                 // IS NOT filter doesn't add the carets (^) to multienum custom field values  
82                 $input_name0 = $this->encodeMultienumCustom($layout_def, $input_name0);
83                 
84                 return $this->_get_column_select($layout_def)." <> ".$this->reporter->db->quoted($input_name0)."\n";
85         }
86         
87     /**
88      * Returns an OrderBy query for multi-select. We treat multi-select the same as a normal field because
89      * the values stored in the database are in the format ^A^,^B^,^C^ though not necessarily in that order.
90      * @param  $layout_def
91      * @return string
92      */
93     public function queryOrderBy($layout_def) {
94         return SugarWidgetReportField::queryOrderBy($layout_def);
95     }
96     
97     /**
98      * Function checks if the multienum field is custom, and escapes it with carets (^) if it is
99      * @param array $layout_def field layout definition
100      * @param string $value value to be escaped
101      * @return string
102      */
103     private function encodeMultienumCustom($layout_def, $value) {
104         $field_def = $this->reporter->getFieldDefFromLayoutDef($layout_def);
105         // Check if it is a custom field
106                 if (!empty($field_def['source']) && ($field_def['source'] == 'custom_fields' || ($field_def['source'] == 'non-db' && !empty($field_def['ext2']) && !empty($field_def['id']))) && !empty($field_def['real_table']))
107                 {
108                         $value = encodeMultienumValue(array($value)); 
109                 }
110                 return $value;
111     }
112 }
113 ?>