]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/ModuleBuilder/MB/MBVardefs.php
Release 6.2.0
[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
74         }
75
76         function mergeVardefs($by_group=false){
77                 $this->vardefs = array(
78                                         'fields'=>array(),
79                                         'relationships'=>array(),
80                 );
81 //              $object_name = $this->key_name;
82 //              $_object_name = strtolower($this->name);
83                 $module_name = $this->name;
84                 $this->loadTemplate($by_group,'basic',  MB_TEMPLATES . '/basic/vardefs.php');
85                 foreach($this->iTemplates as $template=>$val){
86                         $file = MB_IMPLEMENTS . '/' . $template . '/vardefs.php';
87                         $this->loadTemplate($by_group,$template, $file);
88                 }
89                 foreach($this->templates as $template=>$val){
90                         if($template == 'basic')continue;
91                         $file = MB_TEMPLATES . '/' . $template . '/vardefs.php';
92                         $this->loadTemplate($by_group,$template, $file);
93                 }
94
95                 if($by_group){
96                         $this->vardefs['fields'][$this->name] = $this->vardef['fields'];
97                 }else{
98                         $this->vardefs['fields'] = array_merge($this->vardefs['fields'], $this->vardef['fields']);
99                 }
100         }
101
102         function updateVardefs($by_group=false){
103                 $this->mergeVardefs($by_group);
104         }
105
106
107         function getVardefs(){
108                 return $this->vardefs;
109         }
110
111         function getVardef(){
112                 return $this->vardef;
113         }
114                 
115         function addFieldVardef($vardef){
116                 if(empty($vardef['default']))unset($vardef['default']);
117                 $this->vardef['fields'][$vardef['name']] = $vardef;
118         }
119
120         function deleteField($field){
121                 unset($this->vardef['fields'][$field->name]);
122         }
123
124         function save(){
125                 $header = file_get_contents('modules/ModuleBuilder/MB/header.php');
126                 write_array_to_file('vardefs', $this->vardef, $this->path . '/vardefs.php','w', $header);
127         }
128
129         function build($path){
130                 $header = file_get_contents('modules/ModuleBuilder/MB/header.php');
131                 write_array_to_file('dictionary["' . $this->name . '"]', $this->getVardefs(), $path . '/vardefs.php', 'w', $header);
132         }
133         function load(){
134                 $this->vardef = array('fields'=>array(), 'relationships'=>array());
135                 if(file_exists($this->path . '/vardefs.php')){
136                         include($this->path. '/vardefs.php');
137                         $this->vardef = $vardefs;
138                 }
139         }
140
141
142
143
144
145 }
146 ?>