]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/ModuleBuilder/parsers/StandardField.php
Release 6.1.4
[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 is a customer relationship management program developed by
6  * SugarCRM, Inc. Copyright (C) 2004-2011 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 $baseField;
46         
47
48     function __construct($module = '') {
49         parent::DynamicField($module);
50     }
51     
52     protected function loadCustomDef($field){
53         global $beanList;
54         if (!empty($beanList[$this->module]) && is_file("custom/Extension/modules/{$this->module}/Ext/Vardefs/sugarfield_$field.php"))
55         {
56                 $dictionary = array($beanList[$this->module] => array("fields" => array($field => array())));
57             include("$this->base_path/sugarfield_$field.php");
58             if (!empty($dictionary[$beanList[$this->module]]) && isset($dictionary[$beanList[$this->module]]["fields"][$field]))
59                 $this->custom_def = $dictionary[$beanList[$this->module]]["fields"][$field];
60         }
61     }
62     
63     /**
64      * Adds a custom field using a field object
65      *
66      * @param Field Object $field
67      * @return boolean
68      */
69     function addFieldObject(&$field){
70         global $dictionary, $beanList;
71         
72         
73         if (empty($beanList[$this->module]))
74             return false;
75
76         $bean_name = $beanList[$this->module];
77         //Hack for the broken cases module
78         $vBean = $bean_name == "aCase" ? "Case" : $bean_name;
79
80         if (empty($dictionary[$vBean]) || empty($dictionary[$vBean]["fields"][$field->name]))
81
82             return false;
83
84         $currdef = $dictionary[$vBean]["fields"][$field->name];
85         $this->loadCustomDef($field->name);
86         $newDef = $field->get_field_def();
87         
88         require_once ('modules/DynamicFields/FieldCases.php') ;
89         $this->baseField = get_widget ( $field->type) ;
90         foreach ($field->vardef_map as $property => $fmd_col){
91            
92                 if ($property == "action" || $property == "label_value" || $property == "label"
93                 || ((substr($property, 0,3) == 'ext' && strlen($property) == 4))
94             ) 
95                 continue;
96                         
97             // Bug 37043 - Avoid writing out vardef defintions that are the default value.
98             if (isset($newDef[$property]) && 
99                 ((!isset($currdef[$property]) && !$this->isDefaultValue($property,$newDef[$property], $this->baseField))
100                         || (isset($currdef[$property]) && $currdef[$property] != $newDef[$property])
101                 )
102             ){
103                 $this->custom_def[$property] = 
104                     is_string($newDef[$property]) ? htmlspecialchars_decode($newDef[$property], ENT_QUOTES) : $newDef[$property];
105             }
106             
107             if (isset($this->custom_def[$property]) && !isset($newDef[$property]))
108                 unset($this->custom_def[$property]);
109         }
110         
111         if (isset($this->custom_def["duplicate_merge_dom_value"]) && !isset($this->custom_def["duplicate_merge"]))
112                 unset($this->custom_def["duplicate_merge_dom_value"]);
113         
114         $this->writeVardefExtension($bean_name, $field, $this->custom_def);
115     }
116     
117     
118 }
119
120 ?>