]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/DynamicFields/templates/Fields/TemplateEnum.php
Release 6.4.0
[Github/sugarcrm.git] / modules / DynamicFields / templates / Fields / TemplateEnum.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-2011 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 require_once('include/utils/array_utils.php');
40 class TemplateEnum extends TemplateText{
41     var $max_size = 100;
42     var $len = 100;
43     var $type='enum';
44     var $ext1 = '';
45     var $default_value = '';
46     var $dependency ; // any dependency information
47     var $supports_unified_search = true;
48
49     function __construct ()
50     {
51         // ensure that the field dependency information is read in from any _REQUEST
52         $this->localVardefMap = array (
53                 'trigger' => 'trigger',
54                 'action' => 'action' , ) ;
55         $this->vardef_map = array_merge ( $this->vardef_map , $this->localVardefMap ) ;
56     }
57
58     function populateFromPost ()
59     {
60         parent::populateFromPost();
61         // now convert trigger,action pairs into a dependency array representation
62         // we expect the dependencies in the following format:
63         // trigger = [ trigger for action 1 , trigger for action 2 , ... , trigger for action n ]
64         // action = [ action 1 , action 2 , ... , action n ]
65
66         // check first if we have the component parts of a dependency
67         $dependencyPresent = true ;
68         foreach ( $this->localVardefMap as $def )
69         {
70                 $dependencyPresent &= isset ( $this->$def ) ;
71         }
72
73         if ( $dependencyPresent )
74         {
75                 $dependencies = array () ;
76
77                 if ( is_array ( $this->trigger ) && is_array ( $this->action ) )
78                 {
79                                 for ( $i = 0 ; $i < count ( $this->action ) ; $i++ )
80                                 {
81                                         $dependencies [ $this->trigger [ $i ] ] = $this->action [ $i ] ;
82                                 }
83                                 $this->dependency = $dependencies ;
84                 }
85                 else
86                 {
87                         if ( ! is_array ( $this->trigger ) && ! is_array ( $this->action ) )
88                                 $this->dependency = array ( $this->trigger => $this->action ) ;
89                 }
90                 // tidy up
91                 unset ( $this->trigger ) ;
92                 unset ( $this->action ) ;
93         }
94     }
95         function get_xtpl_edit(){
96                 $name = $this->name;
97                 $value = '';
98                 if(isset($this->bean->$name)){
99                         $value = $this->bean->$name;
100                 }else{
101                         if(empty($this->bean->id)){
102                                 $value= $this->default_value;
103                         }
104                 }
105                 if(!empty($this->help)){
106                     $returnXTPL[strtoupper($this->name . '_help')] = translate($this->help, $this->bean->module_dir);
107                 }
108
109                 global $app_list_strings;
110                 $returnXTPL = array();
111                 $returnXTPL[strtoupper($this->name)] = $value;
112                 if(empty($this->ext1)){
113                         $this->ext1 = $this->options;
114                 }
115                 $returnXTPL[strtoupper('options_'.$this->name)] = get_select_options_with_id($app_list_strings[$this->ext1], $value);
116
117                 return $returnXTPL;
118
119
120         }
121
122         function get_xtpl_search(){
123                 $searchFor = '';
124                 if(!empty($_REQUEST[$this->name])){
125                         $searchFor = $_REQUEST[$this->name];
126                 }
127                 global $app_list_strings;
128                 $returnXTPL = array();
129                 $returnXTPL[strtoupper($this->name)] = $searchFor;
130                 if(empty($this->ext1)){
131                         $this->ext1 = $this->options;
132                 }
133                 $returnXTPL[strtoupper('options_'.$this->name)] = get_select_options_with_id(add_blank_option($app_list_strings[$this->ext1]), $searchFor);
134                 return $returnXTPL;
135
136         }
137
138         function get_field_def(){
139                 $def = parent::get_field_def();
140                 $def['options'] = !empty($this->options) ? $this->options : $this->ext1;
141                 $def['default'] = !empty($this->default) ? $this->default : $this->default_value;
142                 $def['len'] = $this->max_size;
143                 $def['studio'] = 'visible';
144                 // this class may be extended, so only do the unserialize for genuine TemplateEnums
145                 if (get_class( $this ) == 'TemplateEnum' && empty($def['dependency']) )
146                         $def['dependency'] = isset($this->ext4)? unserialize(html_entity_decode($this->ext4)) : null ;
147                 return $def;
148         }
149
150         function get_xtpl_detail(){
151                 $name = $this->name;
152
153                 // awu: custom fields are not being displayed on the detail view because $this->ext1 is always empty, adding this to get the options
154                 if(empty($this->ext1)){
155                         if(!empty($this->options))
156                                 $this->ext1 = $this->options;
157                 }
158
159                 if(isset($this->bean->$name)){
160                         $key = $this->bean->$name;
161                         global $app_list_strings;
162                         if(preg_match('/&amp;/s', $key)) {
163                            $key = str_replace('&amp;', '&', $key);
164                         }
165                         if(isset($app_list_strings[$this->ext1])){
166                 if(isset($app_list_strings[$this->ext1][$key])) {
167                     return $app_list_strings[$this->ext1][$key];
168                 }
169
170                                 if(isset($app_list_strings[$this->ext1][$this->bean->$name])){
171                                         return $app_list_strings[$this->ext1][$this->bean->$name];
172                                 }
173                         }
174                 }
175                 return '';
176         }
177
178         function save($df){
179                 if (!empty($this->default_value) && is_array($this->default_value)) {
180                         $this->default_value = $this->default_value[0];
181                 }
182                 if (!empty($this->default) && is_array($this->default)) {
183                         $this->default = $this->default[0];
184                 }
185                 parent::save($df);
186         }
187 }
188
189
190 ?>