]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/DynamicFields/templates/Fields/TemplateField.php
Release 6.5.1
[Github/sugarcrm.git] / modules / DynamicFields / templates / Fields / TemplateField.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 $GLOBALS['studioReadOnlyFields'] = array('date_entered'=>1, 'date_modified'=>1, 'created_by'=>1, 'id'=>1, 'modified_user_id'=>1);
39 class TemplateField{
40         /*
41                 The view is the context this field will be used in
42                 -edit
43                 -list
44                 -detail
45                 -search
46                 */
47         var $view = 'edit';
48         var $name = '';
49         var $vname = '';
50         var $id = '';
51         var $size = '20';
52         var $len = '255';
53         var $required = false;
54         var $default = null;
55         var $default_value = null;
56         var $type = 'varchar';
57         var $comment = '';
58         var $bean;
59         var $ext1 = '';
60         var $ext2 = '';
61         var $ext3 = '';
62         var $ext4 = '';
63         var $audited= 0;
64         var $massupdate = 0;
65         var $importable = 'true' ;
66         var $duplicate_merge=0;
67         var $new_field_definition;
68         var $reportable = true;
69         var $label_value = '';
70         var $help = '';
71         var $formula = '';
72     var $unified_search = 0;
73     var $supports_unified_search = false;
74         var $vardef_map = array(
75                 'name'=>'name',
76                 'label'=>'vname',
77         // bug 15801 - need to ALWAYS keep default and default_value consistent as some methods/classes use one, some use another...
78                 'default_value'=>'default',
79                 'default'=>'default_value',
80                 'display_default'=>'default_value',
81         //              'default_value'=>'default_value',
82         //              'default'=>'default_value',
83                 'len'=>'len',
84                 'required'=>'required',
85                 'type'=>'type',
86                 'audited'=>'audited',
87                 'massupdate'=>'massupdate',
88                 'options'=>'ext1',
89                 'help'=>'help',
90             'comments'=>'comment',
91             'importable'=>'importable',
92                 'duplicate_merge'=>'duplicate_merge',
93                 'duplicate_merge_dom_value'=>'duplicate_merge_dom_value', //bug #14897
94                 'merge_filter'=>'merge_filter',
95                 'reportable' => 'reportable',
96                 'min'=>'ext1',
97                 'max'=>'ext2',
98                 'ext2'=>'ext2',
99                 'ext4'=>'ext4',
100         //'disable_num_format'=>'ext3',
101             'ext3'=>'ext3',
102                 'label_value'=>'label_value',
103                 'unified_search'=>'unified_search',
104         'full_text_search'=>'full_text_search',
105         );
106     // Bug #48826
107     // fields to decode from post request
108     var $decode_from_request_fields_map = array('formula', 'dependency');
109         /*
110                 HTML FUNCTIONS
111                 */
112         function get_html(){
113                 $view = $this->view;
114                 if(!empty($GLOBALS['studioReadOnlyFields'][$this->name]))$view = 'detail';
115                 switch($view){
116                         case 'search':return $this->get_html_search();
117                         case 'edit': return $this->get_html_edit();
118                         case 'list': return $this->get_html_list();
119                         case 'detail': return $this->get_html_detail();
120
121                 }
122         }
123         function set($values){
124                 foreach($values as $name=>$value){
125                         $this->$name = $value;
126                 }
127
128         }
129
130         function get_html_edit(){
131                 return 'not implemented';
132         }
133
134         function get_html_list(){
135                 return $this->get_html_detail();
136         }
137
138         function get_html_detail(){
139                 return 'not implemented';
140         }
141
142         function get_html_search(){
143                 return $this->get_html_edit();
144         }
145         function get_html_label(){
146
147                 $label =  "{MOD." .$this->vname . "}";
148                 if(!empty($GLOBALS['app_strings'][$this->vname])){
149                         $label = "{APP." .$this->label . "}";
150                 }
151                 if($this->view == 'edit' && $this->is_required()){
152                         $label .= '<span class="required">*</span>';
153                 }
154                 if($this->view == 'list'){
155                         if(isset($this->bean)){
156                                 if(!empty($this->id)){
157                                         $name = $this->bean->table_name . '_cstm.'. $this->name;
158                                         $arrow = $this->bean->table_name . '_cstm_'. $this->name;
159                                 }else{
160                                         $name = $this->bean->table_name . '.'. $this->name;
161                                         $arrow = $this->bean->table_name . '_'. $this->name;
162                                 }
163                         }else{
164                                 $name = $this->name;
165                                 $arrow = $name;
166                         }
167                         $label = "<a href='{ORDER_BY}$name' class='listViewThLinkS1'>{MOD.$this->label}{arrow_start}{".$arrow."_arrow}{arrow_end}</a>";
168                 }
169                 return $label;
170
171         }
172
173         /*
174                 XTPL FUNCTIONS
175                 */
176
177         function get_xtpl($bean = false){
178                 if($bean)
179                 $this->bean = $bean;
180                 $view = $this->view;
181                 if(!empty($GLOBALS['studioReadOnlyFields'][$this->name]))$view = 'detail';
182                 switch($view){
183                         case 'search':return $this->get_xtpl_search();
184                         case 'edit': return $this->get_xtpl_edit();
185                         case 'list': return $this->get_xtpl_list();
186                         case 'detail': return $this->get_xtpl_detail();
187
188                 }
189         }
190
191         function get_xtpl_edit(){
192                 return '/*not implemented*/';
193         }
194
195         function get_xtpl_list(){
196                 return get_xtpl_detail();
197         }
198
199         function get_xtpl_detail(){
200                 return '/*not implemented*/';
201         }
202
203         function get_xtpl_search(){
204                 //return get_xtpl_edit();
205         }
206
207         function is_required(){
208                 if($this->required){
209                         return true;
210                 }
211                 return false;
212
213         }
214
215
216
217
218         /*
219                 DB FUNCTIONS
220                 */
221
222         function get_db_type(){
223             if(!empty($this->type)) {
224                 $type = $GLOBALS['db']->getColumnType($this->type);
225             }
226             if(!empty($type)) return " $type";
227             $type = $GLOBALS['db']->getColumnType("varchar");
228         return " $type({$this->len})";
229         }
230
231         function get_db_default($modify=false){
232                 $GLOBALS['log']->debug('get_db_default(): default_value='.$this->default_value);
233                 if (!$modify or empty($this->new_field_definition['default_value']) or $this->new_field_definition['default_value'] != $this->default_value ) {
234                         if(!is_null($this->default_value)){ // add a default value if it is not null - we want to set a default even if default_value is '0', which is not null, but which is empty()
235                                 if(NULL == trim($this->default_value)){
236                                         return " DEFAULT NULL";
237                                 }
238                                 else {
239                                         return " DEFAULT '$this->default_value'";
240                                 }
241                         }else{
242                                 return '';
243                         }
244                 }
245         }
246
247         /*
248          * Return the required clause for this field
249          * Confusingly, when modifying an existing field ($modify=true) there are two exactly opposite cases:
250          * 1. if called by Studio, only $this->required is set. If set, we return "NOT NULL" otherwise we return "NULL"
251          * 2. if not called by Studio, $this->required holds the OLD value of required, and new_field_definition['required'] is the NEW
252          * So if not called by Studio we want to return NULL if required=true (because we are changing FROM this setting)
253          */
254
255         function get_db_required($modify=false){
256                 //              $GLOBALS['log']->debug('get_db_required required='.$this->required." and ".(($modify)?"true":"false")." and ".print_r($this->new_field_definition,true));
257                 $req = "";
258
259                 if ($modify) {
260                         if (!empty($this->new_field_definition['required'])) {
261                                 if ($this->required and $this->new_field_definition['required'] != $this->required) {
262                                         $req = " NULL ";
263                                 }
264                         }
265                         else
266                         {
267                                 $req = ($this->required) ? " NOT NULL " : ''; // bug 17184 tyoung - set required correctly when modifying custom field in Studio
268                         }
269                 }
270                 else
271                 {
272                         if (empty($this->new_field_definition['required']) or $this->new_field_definition['required'] != $this->required ) {
273                                 if(!empty($this->required) && $this->required){
274                                         $req = " NOT NULL";
275                                 }
276                         }
277                 }
278
279                 return $req;
280         }
281
282         /*      function get_db_required($modify=false){
283                 $GLOBALS['log']->debug('get_db_required required='.$this->required." and ".(($modify)?"true":"false")." and ".print_r($this->new_field_definition,true));
284                 if ($modify) {
285                 if (!empty($this->new_field_definition['required'])) {
286                 if ($this->required and $this->new_field_definition['required'] != $this->required) {
287                 return " null ";
288                 }
289                 return "";
290                 }
291                 }
292                 if (empty($this->new_field_definition['required']) or $this->new_field_definition['required'] != $this->required ) {
293                 if(!empty($this->required) && $this->required){
294                 return " NOT NULL";
295                 }
296                 }
297                 return '';
298                 }
299                 */
300         /**
301          * Oracle Support: do not set required constraint if no default value is supplied.
302          * In this case the default value will be handled by the application/sugarbean.
303          */
304         function get_db_add_alter_table($table)
305         {
306                 return $GLOBALS['db']->getHelper()->addColumnSQL($table, $this->get_field_def(), true);
307         }
308
309         function get_db_delete_alter_table($table)
310         {
311                 return $GLOBALS['db']->getHelper()->dropColumnSQL(
312                 $table,
313                 $this->get_field_def()
314                 );
315         }
316
317         /**
318          * mysql requires the datatype caluse in the alter statment.it will be no-op anyway.
319          */
320         function get_db_modify_alter_table($table){
321                 return $GLOBALS['db']->alterColumnSQL($table, $this->get_field_def());
322         }
323
324
325         /*
326          * BEAN FUNCTIONS
327          *
328          */
329         function get_field_def(){
330                 $array =  array(
331                         'required'=>$this->convertBooleanValue($this->required),
332                         'source'=>'custom_fields',
333                         'name'=>$this->name,
334                         'vname'=>$this->vname,
335                         'type'=>$this->type,
336                         'massupdate'=>$this->massupdate,
337                         'default'=>$this->default,
338             'no_default'=> !empty($this->no_default),
339                         'comments'=> (isset($this->comments)) ? $this->comments : '',
340                     'help'=> (isset($this->help)) ?  $this->help : '',
341                     'importable'=>$this->importable,
342                         'duplicate_merge'=>$this->duplicate_merge,
343                         'duplicate_merge_dom_value'=> $this->getDupMergeDomValue(),
344                         'audited'=>$this->convertBooleanValue($this->audited),
345                         'reportable'=>$this->convertBooleanValue($this->reportable),
346             'unified_search'=>$this->convertBooleanValue($this->unified_search),
347             'merge_filter' => empty($this->merge_filter) ? "disabled" : $this->merge_filter
348                 );
349         if (isset($this->full_text_search)) {
350             $array['full_text_search'] = $this->full_text_search;
351         }
352                 if(!empty($this->len)){
353                         $array['len'] = $this->len;
354                 }
355                 if(!empty($this->size)){
356                         $array['size'] = $this->size;
357                 }
358
359         $this->get_dup_merge_def($array);
360
361                 return $array;
362         }
363
364         protected function convertBooleanValue($value)
365         {
366                 if ($value === 'true' || $value === '1' || $value === 1)
367                 return  true;
368                 else if ($value === 'false' || $value === '0' || $value === 0)
369                 return  false;
370                 else
371                 return $value;
372         }
373
374
375         /* if the field is duplicate merge enabled this function will return the vardef entry for the same.
376          */
377         function get_dup_merge_def(&$def) {
378         switch ($def['duplicate_merge_dom_value']) {
379                         case 0:
380                                 $def['duplicate_merge']='disabled';
381                 $def['merge_filter']='disabled';
382                                 break;
383                         case 1:
384                                 $def['duplicate_merge']='enabled';
385                 $def['merge_filter']='disabled';
386                                 break;
387                         case 2:
388                                 $def['merge_filter']='enabled';
389                                 $def['duplicate_merge']='enabled';
390                                 break;
391                         case 3:
392                                 $def['merge_filter']='selected';
393                                 $def['duplicate_merge']='enabled';
394                                 break;
395                         case 4:
396                                 $def['merge_filter']='enabled';
397                                 $def['duplicate_merge']='disabled';
398                                 break;
399                 }
400
401         }
402
403     /**
404      * duplicate_merge_dom_value drives the dropdown in the studio editor. This dropdown drives two fields though,
405      * duplicate_merge and merge_filter. When duplicate_merge_dom_value is not set, we need to derive it from the values
406      * of those two fields. Also, when studio sends this value down to be read in PopulateFromPost, it is set to
407      * duplicate_merge rather than duplicate_merge_dom_value, so we must check if duplicate_merge is a number rather
408      * than a string as well.
409      * @return int
410      */
411     function getDupMergeDomValue(){
412         if (isset($this->duplicate_merge_dom_value)) {
413             return $this->duplicate_merge_dom_value;
414         }
415
416         //If duplicate merge is numeric rather than a string, it is probably what duplicate_merge_dom_value was set to.
417         if (is_numeric($this->duplicate_merge))
418             return $this->duplicate_merge;
419
420
421         //Figure out the duplicate_merge_dom_value based on the values of merge filter and duplicate merge
422         if (empty($this->merge_filter) || $this->merge_filter === 'disabled' )
423         {
424             if (empty($this->duplicate_merge) || $this->duplicate_merge === 'disabled') {
425                 $this->duplicate_merge_dom_value = 0;
426             } else {
427                 $this->duplicate_merge_dom_value = 1;
428             }
429         } else {
430             if ($this->merge_filter === "selected")
431                 $this->duplicate_merge_dom_value = 3;
432             else if (empty($this->duplicate_merge) || $this->duplicate_merge === 'disabled') {
433                 $this->duplicate_merge_dom_value = 4;
434             } else {
435                 $this->duplicate_merge_dom_value = 2;
436             }
437         }
438
439         return $this->duplicate_merge_dom_value;
440     }
441
442         /*
443                 HELPER FUNCTIONS
444                 */
445
446
447         function prepare(){
448                 if(empty($this->id)){
449                         $this->id = $this->name;
450                 }
451         }
452
453         /**
454          * populateFromRow
455          * This function supports setting the values of all TemplateField instances.
456          * @param $row The Array key/value pairs from fields_meta_data table
457          */
458         function populateFromRow($row=array()) {
459                 $fmd_to_dyn_map = array('comments' => 'comment', 'require_option' => 'required', 'label' => 'vname',
460                                                             'mass_update' => 'massupdate', 'max_size' => 'len', 'default_value' => 'default', 'id_name' => 'ext3');
461                 if(!is_array($row)) {
462                         $GLOBALS['log']->error("Error: TemplateField->populateFromRow expecting Array");
463                 }
464                 //Bug 24189: Copy fields from FMD format to Field objects and vice versa
465                 foreach ($fmd_to_dyn_map as $fmd_key => $dyn_key) {
466             if (isset($row[$dyn_key])) {
467                 $this->$fmd_key = $row[$dyn_key];
468             }
469             if (isset($row[$fmd_key])) {
470                                 $this->$dyn_key = $row[$fmd_key];
471                         }
472                 }
473                 foreach($row as $key=>$value) {
474                         $this->$key = $value;
475                 }
476         }
477
478         function populateFromPost(){
479                 foreach($this->vardef_map as $vardef=>$field){
480
481                         if(isset($_REQUEST[$vardef])){              
482                 $this->$vardef = $_REQUEST[$vardef];
483
484                             //  Bug #48826. Some fields are allowed to have special characters and must be decoded from the request
485                 if (is_string($this->$vardef) && in_array($vardef, $this->decode_from_request_fields_map))
486                   $this->$vardef = html_entity_decode($this->$vardef);
487
488                                 // Bug 49774, 49775: Strip html tags from 'formula' and 'dependency'.
489                                 // Add to the list below if we need to do the same for other fields.
490                                 if (!empty($this->$vardef) && in_array($vardef, array('formula', 'dependency'))){
491                                     $this->$vardef = to_html(strip_tags(from_html($this->$vardef)));
492                                 }
493
494                 //Remove potential xss code from help field
495                 if($field == 'help' && !empty($this->$vardef))
496                 {
497                     $help = htmlspecialchars_decode($this->$vardef, ENT_QUOTES);
498                     $this->$vardef = htmlentities(remove_xss($help));
499                 }
500
501
502                                 if($vardef != $field){
503                                         $this->$field = $this->$vardef;
504                                 }
505                         }
506                 }
507                 $this->applyVardefRules();
508                 $GLOBALS['log']->debug('populate: '.print_r($this,true));
509
510         }
511
512         protected function applyVardefRules()
513         {
514         }
515
516         function get_additional_defs(){
517                 return array();
518         }
519
520         function delete($df){
521                 $df->deleteField($this);
522         }
523
524     /**
525      * get_field_name
526      *
527      * This is a helper function to return a field's proper name.  It checks to see if an instance of the module can
528      * be created and then attempts to retrieve the field's name based on the name lookup skey supplied to the method.
529      *
530      * @param String $module The name of the module
531      * @param String $name The field name key
532      * @return The field name for the module
533      */
534     protected function get_field_name($module, $name)
535     {
536        $bean = loadBean($module);
537        if(empty($bean) || is_null($bean))
538        {
539           return $name;
540        }
541
542        $field_defs = $bean->field_defs;
543        return isset($field_defs[$name]['name']) ? $field_defs[$name]['name'] : $name;
544     }
545
546     /**
547      * save
548      *
549      * This function says the field template by calling the DynamicField addFieldObject function.  It then
550      * checks to see if updates are needed for the SearchFields.php file.  In the event that the unified_search
551      * member variable is set to true, a search field definition is updated/created to the SearchFields.php file.
552      *
553      * @param DynamicField $df
554      */
555         function save($df){
556                 //          $GLOBALS['log']->debug('saving field: '.print_r($this,true));
557                 $df->addFieldObject($this);
558
559         require_once('modules/ModuleBuilder/parsers/parser.searchfields.php');
560         $searchFieldParser = new ParserSearchFields( $df->getModuleName() , $df->getPackageName() ) ;
561             //If unified_search is enabled for this field, then create the SearchFields entry
562             $fieldName = $this->get_field_name($df->getModuleName(), $this->name);
563         if($this->unified_search && !isset($searchFieldParser->searchFields[$df->getModuleName()][$fieldName]))
564         {
565            $searchFieldParser->addSearchField($fieldName, array('query_type'=>'default'));
566            $searchFieldParser->saveSearchFields($searchFieldParser->searchFields);
567         }
568         }
569
570 }
571
572
573 ?>