]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Studio/wizards/StudioWizard.php
Release 6.1.4
[Github/sugarcrm.git] / modules / Studio / wizards / StudioWizard.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2011 SugarCRM Inc.
6  * 
7  * This program is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU Affero General Public License version 3 as published by the
9  * Free Software Foundation with the addition of the following permission added
10  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
11  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
12  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
13  * 
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
17  * details.
18  * 
19  * You should have received a copy of the GNU Affero General Public License along with
20  * this program; if not, see http://www.gnu.org/licenses or write to the Free
21  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22  * 02110-1301 USA.
23  * 
24  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
25  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
26  * 
27  * The interactive user interfaces in modified source and object code versions
28  * of this program must display Appropriate Legal Notices, as required under
29  * Section 5 of the GNU Affero General Public License version 3.
30  * 
31  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
32  * these Appropriate Legal Notices must retain the display of the "Powered by
33  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
34  * technical reasons, the Appropriate Legal Notices must display the words
35  * "Powered by SugarCRM".
36  ********************************************************************************/
37
38
39
40
41
42 class StudioWizard{
43     var $tplfile = 'modules/Studio/wizards/tpls/wizard.tpl';
44     var $wizard = 'StudioWizard';
45     var $status = '';
46     var $assign = array();
47     
48     function welcome(){
49         return $GLOBALS['mod_strings']['LBL_SW_WELCOME'];
50     }
51
52     function options(){
53         $options = array('SelectModuleWizard'=>$GLOBALS['mod_strings']['LBL_SW_EDIT_MODULE'], 
54                          'EditDropDownWizard'=>$GLOBALS['mod_strings']['LBL_SW_EDIT_DROPDOWNS'],
55                          'RenameTabs'=>$GLOBALS['mod_strings']['LBL_SW_RENAME_TABS'],
56                          'ConfigureTabs'=>$GLOBALS['mod_strings']['LBL_SW_EDIT_TABS'],
57                          'ConfigureGroupTabs'=>$GLOBALS['mod_strings']['LBL_SW_EDIT_GROUPTABS'],
58                          'Portal'=>$GLOBALS['mod_strings']['LBL_SW_EDIT_PORTAL'],
59                                          'RepairCustomFields'=>$GLOBALS['mod_strings']['LBL_SW_REPAIR_CUSTOMFIELDS'],
60                                          'MigrateCustomFields'=>$GLOBALS['mod_strings']['LBL_SW_MIGRATE_CUSTOMFIELDS'],
61
62         
63         );
64         return $options;
65         
66         
67     }
68     function back(){}
69     function process($option){
70         switch($option)
71         {
72             case 'SelectModuleWizard':
73                 require_once('modules/Studio/wizards/'. $option . '.php');
74                 $newWiz = new $option();
75                 $newWiz->display();
76                 break;
77             case 'EditDropDownWizard':
78                 require_once('modules/Studio/wizards/'. $option . '.php');
79                 $newWiz = new $option();
80                 $newWiz->display();
81                 break;
82             case 'RenameTabs':
83                 $_REQUEST['dropdown_name'] = 'moduleList';
84                 require_once('modules/Studio/wizards/EditDropDownWizard.php');
85                 $newWiz = new EditDropDownWizard();
86                 $newWiz->process('EditDropdown');
87                 break; 
88             case 'ConfigureTabs':
89                 header('Location: index.php?module=Administration&action=ConfigureTabs');
90                 sugar_cleanup(true); 
91             case 'ConfigureGroupTabs':
92                 require_once('modules/Studio/TabGroups/EditViewTabs.php');
93                 break;
94             case 'Workflow':
95                 header('Location: index.php?module=WorkFlow&action=ListView');
96                 sugar_cleanup(true);
97             case 'RepairCustomFields':
98                 header('Location: index.php?module=Administration&action=UpgradeFields');
99                 sugar_cleanup(true);
100             case 'MigrateCustomFields':
101                 header('LOCATION: index.php?module=Administration&action=Development');
102                 sugar_cleanup(true);
103             case 'SugarPortal':
104                 header('LOCATION: index.php?module=Studio&action=Portal');
105                 sugar_cleanup(true);
106             case 'Classic':
107                 header('Location: index.php?module=DynamicLayout&action=index');
108                 sugar_cleanup(true);
109             default:
110                 $this->display();
111         }
112     }
113     function display($error = ''){
114        echo $this->fetch($error );
115     }
116     
117     function fetch($error = ''){
118          global $mod_strings;
119         echo get_module_title($mod_strings['LBL_MODULE_TITLE'], $mod_strings['LBL_MODULE_TITLE'], true); 
120         $sugar_smarty = new Sugar_Smarty();
121         $sugar_smarty->assign('welcome', $this->welcome());
122         $sugar_smarty->assign('options', $this->options());
123         $sugar_smarty->assign('MOD', $GLOBALS['mod_strings']);
124         $sugar_smarty->assign('option', (!empty($_REQUEST['option'])?$_REQUEST['option']:''));
125         $sugar_smarty->assign('wizard',$this->wizard);
126          $sugar_smarty->assign('error',$error);
127         $sugar_smarty->assign('status', $this->status);
128         $sugar_smarty->assign('mod', $mod_strings);
129         foreach($this->assign as $name=>$value){
130             $sugar_smarty->assign($name, $value);
131         }
132        return  $sugar_smarty->fetch($this->tplfile);
133     }
134
135 }
136 ?>