]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/ModuleBuilder/parsers/StandardField.php
Release 6.5.10
[Github/sugarcrm.git] / modules / ModuleBuilder / parsers / StandardField.php
1 <?php
2 if (! defined ( 'sugarEntry' ) || ! sugarEntry)
3     die ( 'Not A Valid Entry Point' ) ;
4 /*********************************************************************************
5  * SugarCRM Community Edition is a customer relationship management program developed by
6  * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
7  * 
8  * This program is free software; you can redistribute it and/or modify it under
9  * the terms of the GNU Affero General Public License version 3 as published by the
10  * Free Software Foundation with the addition of the following permission added
11  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
12  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
13  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
14  * 
15  * This program is distributed in the hope that it will be useful, but WITHOUT
16  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
18  * details.
19  * 
20  * You should have received a copy of the GNU Affero General Public License along with
21  * this program; if not, see http://www.gnu.org/licenses or write to the Free
22  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23  * 02110-1301 USA.
24  * 
25  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
26  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
27  * 
28  * The interactive user interfaces in modified source and object code versions
29  * of this program must display Appropriate Legal Notices, as required under
30  * Section 5 of the GNU Affero General Public License version 3.
31  * 
32  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
33  * these Appropriate Legal Notices must retain the display of the "Powered by
34  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
35  * technical reasons, the Appropriate Legal Notices must display the words
36  * "Powered by SugarCRM".
37  ********************************************************************************/
38
39
40 require_once ('modules/DynamicFields/DynamicField.php') ;
41
42 class StandardField extends DynamicField
43 {
44         var $custom_def = array();
45         var $base_def = array();
46         var $baseField;
47         
48
49     function __construct($module = '') {
50         parent::DynamicField($module);
51     }
52     
53     protected function loadCustomDef($field){
54         global $beanList;
55         if (!empty($beanList[$this->module]) && is_file("custom/Extension/modules/{$this->module}/Ext/Vardefs/sugarfield_$field.php"))
56         {
57             $bean_name = get_valid_bean_name($this->module);
58             $dictionary = array($bean_name => array("fields" => array($field => array())));
59             include("$this->base_path/sugarfield_$field.php");
60             if (!empty($dictionary[$bean_name]) && isset($dictionary[$bean_name]["fields"][$field]))
61                 $this->custom_def = $dictionary[$bean_name]["fields"][$field];
62         }
63     }
64
65     protected function loadBaseDef($field){
66         global $beanList;
67         if (!empty($beanList[$this->module]) && is_file("modules/{$this->module}/vardefs.php"))
68         {
69             $dictionary = array();
70             include("modules/{$this->module}/vardefs.php");
71             if (!empty($dictionary[$beanList[$this->module]]) && isset($dictionary[$beanList[$this->module]]["fields"][$field]))
72                 $this->base_def = $dictionary[$beanList[$this->module]]["fields"][$field];
73         }
74     }
75     
76     /**
77      * Adds a custom field using a field object
78      *
79      * @param Field Object $field
80      * @return boolean
81      */
82     function addFieldObject(&$field){
83         global $dictionary, $beanList;
84         
85         
86         if (empty($beanList[$this->module]))
87             return false;
88
89         $bean_name = get_valid_bean_name($this->module);
90
91         if (empty($dictionary[$bean_name]) || empty($dictionary[$bean_name]["fields"][$field->name]))
92             return false;
93
94         $currdef = $dictionary[$bean_name]["fields"][$field->name];
95
96         // set $field->unified_search=true if field supports unified search
97         // regarding #51427
98         if($field->supports_unified_search)
99         {
100             if(isset($dictionary[$bean_name]['unified_search_default_enabled']) && isset($dictionary[$bean_name]['unified_search'])
101             && $dictionary[$bean_name]['unified_search_default_enabled'] && $dictionary[$bean_name]['unified_search'])
102             {
103                 $currdef['unified_search'] = $field->unified_search = isset($currdef['unified_search'])
104                  ? $currdef['unified_search']
105                  : true;
106             }
107         }
108         // end #51427
109
110         $this->loadCustomDef($field->name);
111         $this->loadBaseDef($field->name);
112         $newDef = $field->get_field_def();
113         
114         require_once ('modules/DynamicFields/FieldCases.php') ;
115         $this->baseField = get_widget ( $field->type) ;
116         foreach ($field->vardef_map as $property => $fmd_col){
117            
118                 if ($property == "action" || $property == "label_value" || $property == "label"
119                 || ((substr($property, 0,3) == 'ext' && strlen($property) == 4))
120             ) 
121                 continue;
122                         
123             // Bug 37043 - Avoid writing out vardef defintions that are the default value.
124             if (isset($newDef[$property]) &&
125                 ((!isset($currdef[$property]) && !$this->isDefaultValue($property,$newDef[$property], $this->baseField))
126                         || (isset($currdef[$property]) && $currdef[$property] != $newDef[$property])
127                 )
128             ){
129                 $this->custom_def[$property] =
130                     is_string($newDef[$property]) ? htmlspecialchars_decode($newDef[$property], ENT_QUOTES) : $newDef[$property];
131             }
132             
133             //Remove any orphaned entries
134             if (isset($this->custom_def[$property]) && !isset($newDef[$property]))
135                 unset($this->custom_def[$property]);
136
137             //Handle overrides of out of the box definitions with empty
138             if (!empty($this->base_def[$property]) && !isset($newDef[$property]))
139             {
140                 //Switch on type of the property to find what the correct 'empty' is.
141                 if(is_string($this->base_def[$property]))
142                     $this->custom_def[$property] = "";
143                 else if(is_array($this->base_def[$property]))
144                     $this->custom_def[$property] = array();
145                 else if(is_bool($this->base_def[$property]))
146                     $this->custom_def[$property] = false;
147                 else
148                     $this->custom_def[$property] = null;
149             }
150         }
151         
152         if (isset($this->custom_def["duplicate_merge_dom_value"]) && !isset($this->custom_def["duplicate_merge"]))
153                 unset($this->custom_def["duplicate_merge_dom_value"]);
154         
155         $this->writeVardefExtension($bean_name, $field, $this->custom_def);
156     }
157     
158     
159 }
160
161 ?>