]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/ModuleBuilder/MB/MBVardefs.php
Release 6.2.3
[Github/sugarcrm.git] / modules / ModuleBuilder / MB / MBVardefs.php
1 <?php
2 /*********************************************************************************
3  * SugarCRM Community Edition is a customer relationship management program developed by
4  * SugarCRM, Inc. Copyright (C) 2004-2011 SugarCRM Inc.
5  * 
6  * This program is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU Affero General Public License version 3 as published by the
8  * Free Software Foundation with the addition of the following permission added
9  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
10  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
11  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
12  * 
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
16  * details.
17  * 
18  * You should have received a copy of the GNU Affero General Public License along with
19  * this program; if not, see http://www.gnu.org/licenses or write to the Free
20  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21  * 02110-1301 USA.
22  * 
23  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
24  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
25  * 
26  * The interactive user interfaces in modified source and object code versions
27  * of this program must display Appropriate Legal Notices, as required under
28  * Section 5 of the GNU Affero General Public License version 3.
29  * 
30  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
31  * these Appropriate Legal Notices must retain the display of the "Powered by
32  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
33  * technical reasons, the Appropriate Legal Notices must display the words
34  * "Powered by SugarCRM".
35  ********************************************************************************/
36
37 class MBVardefs{
38         var $templates = array();
39         var $iTemplates = array();
40         var $vardefs = array();
41         var $vardef = array();
42         var $path = '';
43         var $name = '';
44         var $errors = array();
45
46         function MBVardefs($name, $path, $key_name){
47                 $this->path = $path;
48                 $this->name = $name;
49                 $this->key_name = $key_name;
50                 $this->load();
51         }
52
53         function loadTemplate($by_group, $template, $file){
54                 $module = $this->name;
55                 $table_name = $this->name;
56                 $object_name = $this->key_name;
57                 $_object_name = strtolower($this->key_name);
58
59                 // required by the vardef template for team security in SugarObjects
60                 $table_name = strtolower($module);
61
62                 if(file_exists($file)){
63                         include($file);
64                         if($by_group){
65                                 $this->vardefs['fields'] [$template]= $vardefs['fields'];
66                         }else{
67                                 $this->vardefs['fields']= array_merge($this->vardefs['fields'], $vardefs['fields']);
68                                 if(!empty($vardefs['relationships'])){
69                                         $this->vardefs['relationships']= array_merge($this->vardefs['relationships'], $vardefs['relationships']);
70                                 }
71                         }
72                 }
73         //Bug40450 - Extra 'Name' field in a File type module in module builder
74         if(array_key_exists('file', $this->templates))
75         {
76             unset($this->vardefs['fields']['name']);
77             unset($this->vardefs['fields']['file']['name']);
78         }
79
80         }
81
82         function mergeVardefs($by_group=false){
83                 $this->vardefs = array(
84                                         'fields'=>array(),
85                                         'relationships'=>array(),
86                 );
87 //              $object_name = $this->key_name;
88 //              $_object_name = strtolower($this->name);
89                 $module_name = $this->name;
90                 $this->loadTemplate($by_group,'basic',  MB_TEMPLATES . '/basic/vardefs.php');
91                 foreach($this->iTemplates as $template=>$val){
92                         $file = MB_IMPLEMENTS . '/' . $template . '/vardefs.php';
93                         $this->loadTemplate($by_group,$template, $file);
94                 }
95                 foreach($this->templates as $template=>$val){
96                         if($template == 'basic')continue;
97                         $file = MB_TEMPLATES . '/' . $template . '/vardefs.php';
98                         $this->loadTemplate($by_group,$template, $file);
99                 }
100
101                 if($by_group){
102                         $this->vardefs['fields'][$this->name] = $this->vardef['fields'];
103                 }else{
104                         $this->vardefs['fields'] = array_merge($this->vardefs['fields'], $this->vardef['fields']);
105                 }
106         }
107
108         function updateVardefs($by_group=false){
109                 $this->mergeVardefs($by_group);
110         }
111
112
113         function getVardefs(){
114                 return $this->vardefs;
115         }
116
117         function getVardef(){
118                 return $this->vardef;
119         }
120                 
121         function addFieldVardef($vardef){
122                 if(empty($vardef['default']))unset($vardef['default']);
123                 $this->vardef['fields'][$vardef['name']] = $vardef;
124         }
125
126         function deleteField($field){
127                 unset($this->vardef['fields'][$field->name]);
128         }
129
130         function save(){
131                 $header = file_get_contents('modules/ModuleBuilder/MB/header.php');
132                 write_array_to_file('vardefs', $this->vardef, $this->path . '/vardefs.php','w', $header);
133         }
134
135         function build($path){
136                 $header = file_get_contents('modules/ModuleBuilder/MB/header.php');
137                 write_array_to_file('dictionary["' . $this->name . '"]', $this->getVardefs(), $path . '/vardefs.php', 'w', $header);
138         }
139         function load(){
140                 $this->vardef = array('fields'=>array(), 'relationships'=>array());
141                 if(file_exists($this->path . '/vardefs.php')){
142                         include($this->path. '/vardefs.php');
143                         $this->vardef = $vardefs;
144                 }
145         }
146
147
148
149
150
151 }
152 ?>