]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/generic/SugarWidgets/SugarWidgetFieldmultienum.php
Release 6.5.6
[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                 $arr = array ();
43                 foreach ($layout_def['input_name0'] as $value) {
44                         array_push($arr, "'".$GLOBALS['db']->quote($value)."'");
45                 }
46             $reporter = $this->layout_manager->getAttribute("reporter");
47
48         $col_name = $this->_get_column_select($layout_def) . " NOT LIKE " ;
49         $arr_count = count($arr);
50         $query = "";
51         foreach($arr as $key=>$val) {
52                 $query .= $col_name;
53                         $value = preg_replace("/^'/", "'%", $val, 1);
54                         $value = preg_replace("/'$/", "%'", $value, 1);
55                         $query .= $value;
56                         if ($key != ($arr_count - 1))
57                         $query.= " OR " ;       
58         }
59                 return '('.$query.')';        
60         }
61         
62     public function queryFilterone_of(&$layout_def) {
63                 $arr = array ();
64                 foreach ($layout_def['input_name0'] as $value) {
65                         array_push($arr, "'".$GLOBALS['db']->quote($value)."'");
66                 }
67             $reporter = $this->layout_manager->getAttribute("reporter");
68
69         $col_name = $this->_get_column_select($layout_def) . " LIKE " ;
70         $arr_count = count($arr);
71         $query = "";
72         foreach($arr as $key=>$val) {
73                 $query .= $col_name;
74                         $value = preg_replace("/^'/", "'%", $val, 1);
75                         $value = preg_replace("/'$/", "%'", $value, 1);
76                         $query .= $value;
77                         if ($key != ($arr_count - 1))
78                         $query.= " OR " ;       
79         }
80                 return '('.$query.')';        
81         }
82
83         public function queryFilteris($layout_def) {
84                 $input_name0 = $layout_def['input_name0'];
85                 if (is_array($layout_def['input_name0'])) {
86                         $input_name0 = $layout_def['input_name0'][0];
87                 }
88
89                 // Bug 40022
90                 // IS filter doesn't add the carets (^) to multienum custom field values  
91                 $input_name0 = $this->encodeMultienumCustom($layout_def, $input_name0);
92                 
93                 return $this->_get_column_select($layout_def)." = ".$this->reporter->db->quoted($input_name0)."\n";
94         }
95
96         public function queryFilteris_not($layout_def) {
97                 $input_name0 = $layout_def['input_name0'];
98                 if (is_array($layout_def['input_name0'])) {
99                         $input_name0 = $layout_def['input_name0'][0];
100                 }
101
102                 // Bug 50549
103                 // IS NOT filter doesn't add the carets (^) to multienum custom field values  
104                 $input_name0 = $this->encodeMultienumCustom($layout_def, $input_name0);
105                 
106                 return $this->_get_column_select($layout_def)." <> ".$this->reporter->db->quoted($input_name0)."\n";
107         }
108         
109     /**
110      * Returns an OrderBy query for multi-select. We treat multi-select the same as a normal field because
111      * the values stored in the database are in the format ^A^,^B^,^C^ though not necessarily in that order.
112      * @param  $layout_def
113      * @return string
114      */
115     public function queryOrderBy($layout_def) {
116         return SugarWidgetReportField::queryOrderBy($layout_def);
117     }
118     
119     /**
120      * Function checks if the multienum field is custom, and escapes it with carets (^) if it is
121      * @param array $layout_def field layout definition
122      * @param string $value value to be escaped
123      * @return string
124      */
125     private function encodeMultienumCustom($layout_def, $value) {
126         $field_def = $this->reporter->getFieldDefFromLayoutDef($layout_def);
127         // Check if it is a custom field
128                 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']))
129                 {
130                         $value = encodeMultienumValue(array($value)); 
131                 }
132                 return $value;
133     }
134 }
135 ?>