]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/ModuleBuilder/views/view.module.php
Release 6.5.0
[Github/sugarcrm.git] / modules / ModuleBuilder / views / view.module.php
1 <?php
2 /*********************************************************************************
3  * SugarCRM Community Edition is a customer relationship management program developed by
4  * SugarCRM, Inc. Copyright (C) 2004-2012 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
39 class ViewModule extends SugarView
40 {
41         var $mbModule;
42         
43         /**
44          * @see SugarView::_getModuleTitleParams()
45          */
46         protected function _getModuleTitleParams($browserTitle = false)
47         {
48             global $mod_strings;
49             
50         return array(
51            translate('LBL_MODULE_NAME','Administration'),
52            ModuleBuilderController::getModuleTitle(),
53            );
54     }
55
56         function display()
57         {
58                 global $mod_strings;
59                 $smarty = new Sugar_Smarty();
60
61                 require_once('modules/ModuleBuilder/MB/ModuleBuilder.php');
62                 $mb = new ModuleBuilder();
63                 $mb->getPackage($_REQUEST['view_package']);
64                 $package = $mb->packages[$_REQUEST['view_package']];
65                 $module_name = (!empty($_REQUEST['view_module']))?$_REQUEST['view_module']:'';
66                 $package->getModule($module_name);
67                 $this->mbModule = $package->modules[$module_name];
68                 $this->loadPackageHelp($module_name);
69                 
70                 // set up the list of either available types for a new module, or implemented types for an existing one
71         $types = (empty($module_name)) ? MBModule::getTypes() : $this->mbModule->mbvardefs->templates ;
72         
73         foreach( $types as $type=>$definition)
74         {
75             $translated_type[$type]=translate('LBL_TYPE_'.strtoupper($type),'ModuleBuilder');
76         }
77         natcasesort($translated_type);
78         $smarty->assign('types',$translated_type);
79                 
80                 $smarty->assign('package', $package);
81                 $smarty->assign('module', $this->mbModule);
82                 $smarty->assign('mod_strings', $mod_strings);
83
84                 $ajax = new AjaxCompose();
85                 $ajax->addCrumb($GLOBALS['mod_strings']['LBL_MODULEBUILDER'], 'ModuleBuilder.main("mb")');
86                 $ajax->addCrumb(' '. $package->name,'ModuleBuilder.getContent("module=ModuleBuilder&action=package&package='.$package->name.'")');
87                 if(empty($module_name))$module_name = translate('LBL_NEW_MODULE', 'ModuleBuilder');
88                 $ajax->addCrumb($module_name, '');
89                 $html=$smarty->fetch('modules/ModuleBuilder/tpls/MBModule/module.tpl');
90                 if(!empty($_REQUEST['action']) && $_REQUEST['action']=='SaveModule')
91                         $html .="<script>ModuleBuilder.treeRefresh('ModuleBuilder')</script>";
92                 $ajax->addSection('center', translate('LBL_SECTION_MODULE', 'ModuleBuilder'), $html);
93                 
94                 echo $ajax->getJavascript();
95         }
96         
97         function loadPackageHelp(
98             $name
99             )
100         {
101         $this->mbModule->help['default'] = (empty($name))?'create':'modify';
102         $this->mbModule->help['group'] = 'module';
103         }
104 }