]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Studio/wizards/StudioWizard.php
Release 6.5.0
[Github/sugarcrm.git] / modules / Studio / wizards / StudioWizard.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM Community Edition is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2012 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                 require_once('modules/Studio/wizards/RenameModules.php');
84                 $newWiz = new RenameModules();
85                 $newWiz->process();
86                 break; 
87             case 'ConfigureTabs':
88                 header('Location: index.php?module=Administration&action=ConfigureTabs');
89                 sugar_cleanup(true); 
90             case 'ConfigureGroupTabs':
91                 require_once('modules/Studio/TabGroups/EditViewTabs.php');
92                 break;
93             case 'Workflow':
94                 header('Location: index.php?module=WorkFlow&action=ListView');
95                 sugar_cleanup(true);
96             case 'RepairCustomFields':
97                 header('Location: index.php?module=Administration&action=UpgradeFields');
98                 sugar_cleanup(true);
99             case 'MigrateCustomFields':
100                 header('LOCATION: index.php?module=Administration&action=Development');
101                 sugar_cleanup(true);
102             case 'SugarPortal':
103                 header('LOCATION: index.php?module=Studio&action=Portal');
104                 sugar_cleanup(true);
105             case 'Classic':
106                 header('Location: index.php?module=DynamicLayout&action=index');
107                 sugar_cleanup(true);
108             default:
109                 $this->display();
110         }
111     }
112     function display($error = ''){
113        echo $this->fetch($error );
114     }
115     
116     function fetch($error = ''){
117          global $mod_strings;
118         echo getClassicModuleTitle('StudioWizard', array($mod_strings['LBL_MODULE_TITLE']), false);
119         $sugar_smarty = new Sugar_Smarty();
120         $sugar_smarty->assign('welcome', $this->welcome());
121         $sugar_smarty->assign('options', $this->options());
122         $sugar_smarty->assign('MOD', $GLOBALS['mod_strings']);
123         $sugar_smarty->assign('option', (!empty($_REQUEST['option'])?$_REQUEST['option']:''));
124         $sugar_smarty->assign('wizard',$this->wizard);
125          $sugar_smarty->assign('error',$error);
126         $sugar_smarty->assign('status', $this->status);
127         $sugar_smarty->assign('mod', $mod_strings);
128         foreach($this->assign as $name=>$value){
129             $sugar_smarty->assign($name, $value);
130         }
131        return  $sugar_smarty->fetch($this->tplfile);
132     }
133
134 }
135 ?>