]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/ModuleBuilder/views/view.modulefields.php
Release 6.3.0
[Github/sugarcrm.git] / modules / ModuleBuilder / views / view.modulefields.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 require_once('modules/ModuleBuilder/MB/AjaxCompose.php');
38 require_once('modules/ModuleBuilder/views/view.modulefield.php');
39  
40 class ViewModulefields extends SugarView
41 {
42     var $mbModule;
43     
44     /**
45          * @see SugarView::_getModuleTitleParams()
46          */
47         protected function _getModuleTitleParams($browserTitle = false)
48         {
49             global $mod_strings;
50             
51         return array(
52            translate('LBL_MODULE_NAME','Administration'),
53            ModuleBuilderController::getModuleTitle(),
54            );
55     }
56
57         function display()
58         {
59         $smarty = new Sugar_Smarty();
60         global $mod_strings;
61         $bak_mod_strings=$mod_strings;
62         $smarty->assign('mod_strings', $mod_strings);
63
64         $module_name = $_REQUEST['view_module'];
65
66         if(! isset($_REQUEST['view_package']) || $_REQUEST['view_package'] == 'studio') {
67             //$this->loadPackageHelp($module_name);
68             $studioClass = new stdClass;
69             $studioClass->name = $module_name;
70             
71             $objectName = BeanFactory::getObjectName($module_name);
72             VardefManager::loadVardef($module_name, $objectName, true);
73             global $dictionary;
74             $f = array($mod_strings['LBL_HCUSTOM']=>array(), $mod_strings['LBL_HDEFAULT']=>array());
75
76             foreach($dictionary[$objectName]['fields'] as $def) {
77                 if ($this->isValidStudioField($def))
78                 {
79                                         //Custom relate fields will have a non-db source, but custom_module set
80                         if(isset($def['source']) && $def['source'] == 'custom_fields' || isset($def['custom_module'])) {
81                        $f[$mod_strings['LBL_HCUSTOM']][$def['name']] = $def;
82                     } else {
83                        $f[$mod_strings['LBL_HDEFAULT']][$def['name']] = $def;
84                     }
85                 }
86             }
87             $studioClass->mbvardefs->vardefs['fields'] = $f;
88             $smarty->assign('module', $studioClass);
89
90             $package = new stdClass;
91             $package->name = '';
92             $smarty->assign('package', $package);
93             $ajax = new AjaxCompose();
94             $ajax->addCrumb($mod_strings['LBL_STUDIO'], 'ModuleBuilder.getContent("module=ModuleBuilder&action=wizard")');
95             $ajax->addCrumb(translate($module_name), 'ModuleBuilder.getContent("module=ModuleBuilder&action=wizard&view_module='.$module_name.'")');
96             $ajax->addCrumb($mod_strings['LBL_FIELDS'], '');
97             $ajax->addSection('center', $mod_strings['LBL_EDIT_FIELDS'],$smarty->fetch('modules/ModuleBuilder/tpls/MBModule/fields.tpl'));
98             $_REQUEST['field'] = '';
99
100             echo $ajax->getJavascript();
101         } else {
102             require_once('modules/ModuleBuilder/MB/ModuleBuilder.php');
103             $mb = new ModuleBuilder();
104             $mb->getPackage($_REQUEST['view_package']);
105             $package = $mb->packages[$_REQUEST['view_package']];
106
107             $package->getModule($module_name);
108             $this->mbModule = $package->modules[$module_name];
109             $this->loadPackageHelp($module_name);
110             $this->mbModule->getVardefs(true);
111             $this->mbModule->mbvardefs->vardefs['fields'] = array_reverse($this->mbModule->mbvardefs->vardefs['fields'], true);
112             $loadedFields = array();
113             foreach($this->mbModule->mbvardefs->vardefs['fields'] as $k=>$v){
114                 if($k != $module_name)
115                     $titleLBL[$k]=translate("LBL_".strtoupper($k),'ModuleBuilder');
116                 else{
117                     $titleLBL[$k]=$k;
118                 }
119                 foreach($v as $field => $def)
120                 {
121                         if (isset($loadedFields[$field]))
122                                 unset($this->mbModule->mbvardefs->vardefs['fields'][$k][$field]);
123                         else
124                            $loadedFields[$field] = true;
125                 }
126             }
127             $this->mbModule->mbvardefs->vardefs['fields'][$module_name] = $this->cullFields($this->mbModule->mbvardefs->vardefs['fields'][$module_name]);
128             if(file_exists($this->mbModule->path. '/language/'.$GLOBALS['current_language'].'.lang.php')){
129                 include($this->mbModule->path .'/language/'. $GLOBALS['current_language'].'.lang.php');
130                 $this->mbModule->setModStrings($GLOBALS['current_language'],$mod_strings);
131             }
132             elseif(file_exists($this->mbModule->path. '/language/en_us.lang.php')){
133                 include($this->mbModule->path .'/language/en_us.lang.php');
134                 $this->mbModule->setModStrings('en_us',$mod_strings);
135             }
136             $smarty->assign('title', $titleLBL);
137             $smarty->assign('package', $package);
138             $smarty->assign('module', $this->mbModule);
139             $smarty->assign('editLabelsMb','1'); //need to merge MB labels and studio labels. quick fix for now.
140
141
142             $ajax = new AjaxCompose();
143             $ajax->addCrumb($bak_mod_strings['LBL_MODULEBUILDER'], 'ModuleBuilder.main("mb")');
144             $ajax->addCrumb($package->name,'ModuleBuilder.getContent("module=ModuleBuilder&action=package&package='.$package->name.'")');
145             $ajax->addCrumb($module_name, 'ModuleBuilder.getContent("module=ModuleBuilder&action=module&view_package='.$package->name.'&view_module='. $module_name . '")');
146             $ajax->addCrumb($bak_mod_strings['LBL_FIELDS'], '');
147             $ajax->addSection('center', $bak_mod_strings["LBL_FIELDS"],$smarty->fetch('modules/ModuleBuilder/tpls/MBModule/fields.tpl'));
148             $_REQUEST['field'] = '';
149
150             echo $ajax->getJavascript();
151
152
153         }
154     }
155
156     function loadPackageHelp(
157         $name
158         )
159     {
160         $this->mbModule->help['default'] = (empty($name))?'create':'modify';
161         $this->mbModule->help['group'] = 'module';
162         $this->mbModule->help['group'] = 'module';
163     }
164
165     function cullFields(
166         $def
167         )
168     {
169         if(!empty($def['parent_id']))
170             unset($def['parent_id']);
171         if(!empty($def['parent_type']))
172             unset($def['parent_type']);
173         if(!empty($def['currency_id']))
174             unset($def['currency_id']);
175         return $def;
176     }
177         
178     function isValidStudioField(
179         $def
180         )
181         {
182         if (isset($def['studio'])) {
183             if (is_array($def [ 'studio' ]))
184             {
185                         if (isset($def['studio']['editField']) && $def['studio']['editField'] == true)
186                     return true;
187                         if (isset($def['studio']['required']) && $def['studio']['required'])
188                     return true;
189                     
190                 } else
191                 {
192                         if ($def['studio'] == 'visible')
193                     return true;
194                 if ($def['studio'] == 'hidden' || $def['studio'] == 'false' || !$def['studio'] )
195                     return false;
196             }
197         }
198         if (empty($def ['source']) || $def ['source'] == 'db' || $def ['source'] == 'custom_fields')
199                 {
200                 if ($def ['type'] != 'id' && (empty($def ['dbType']) || $def ['dbType'] != 'id'))
201                   return true;
202                 }
203                 
204                 return false;
205         }
206 }