]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Import/views/ImportView.php
Release 6.3.0beta1
[Github/sugarcrm.git] / modules / Import / views / ImportView.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-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 require_once('include/MVC/View/SugarView.php');
39
40
41 class ImportView extends SugarView
42 {
43     protected $currentStep;
44     protected $pageTitleKey;
45     protected $instruction;
46
47     public function __construct($bean = null, $view_object_map = array())
48     {
49         global $mod_strings;
50
51         parent::__construct($bean, $view_object_map);
52
53         if (isset($_REQUEST['button']) && trim($_REQUEST['button']) == htmlentities($mod_strings['LBL_BACK'])) {
54             // if the request comes from the "Back" button, decrease the step count
55             $this->currentStep = isset($_REQUEST['current_step']) ? ($_REQUEST['current_step'] - 1) : 1;
56         } else {
57             $this->currentStep = isset($_REQUEST['current_step']) ? ($_REQUEST['current_step'] + 1) : 1;
58         }
59         $this->importModule = isset($_REQUEST['import_module']) ? $_REQUEST['import_module'] : '';
60         
61         $this->options['show_header'] = false;
62         $this->options['show_footer'] = false;
63         $this->options['show_javascript'] = false;
64     }
65
66     /**
67      * @see SugarView::getMenu()
68      */
69     public function getMenu($module = null)
70     {
71         global $mod_strings, $current_language;
72
73         if ( empty($module) )
74             $module = $this->importModule;
75
76         $old_mod_strings = $mod_strings;
77         $mod_strings = return_module_language($current_language, $module);
78         $returnMenu = parent::getMenu($module);
79         $mod_strings = $old_mod_strings;
80
81         return $returnMenu;
82     }
83
84         /**
85      * @see SugarView::_getModuleTab()
86      */
87         protected function _getModuleTab()
88     {
89         global $app_list_strings, $moduleTabMap;
90
91                 // Need to figure out what tab this module belongs to, most modules have their own tabs, but there are exceptions.
92         if ( !empty($_REQUEST['module_tab']) )
93             return $_REQUEST['module_tab'];
94         elseif ( isset($moduleTabMap[$this->importModule]) )
95             return $moduleTabMap[$this->importModule];
96         // Default anonymous pages to be under Home
97         elseif ( !isset($app_list_strings['moduleList'][$this->importModule]) )
98             return 'Home';
99         else
100             return $this->importModule;
101         }
102
103     /**
104          * @see SugarView::_getModuleTitleParams()
105          */
106         protected function _getModuleTitleParams($browserTitle = false)
107         {
108             global $mod_strings, $app_list_strings;
109
110             $returnArray = array();
111         $returnArray[] = $app_list_strings['moduleList'][$this->importModule];
112             $returnArray[] = $mod_strings['LBL_MODULE_NAME'];
113             $returnArray[] = string_format($mod_strings[$this->pageTitleKey], array($this->currentStep));
114
115             return $returnArray;
116     }
117
118     protected function getInstruction()
119     {
120         global $mod_strings;
121
122         $ins = '';
123         
124         if ($this->instruction) {
125             $ins_string = $mod_strings[$this->instruction];
126             $ins = '<div class="import_instruction">' . $ins_string . '</div>';
127         }
128
129         return $ins;
130     }
131
132      /**
133      * Displays the Smarty template for an error
134      *
135      * @param string $message error message to show
136      * @param string $module what module we were importing into
137      * @param string $action what page we should go back to
138      */
139     protected function _showImportError($message,$module,$action = 'Step1')
140     {
141         $ss = new Sugar_Smarty();
142         
143         global $mod_strings;
144
145                 $themeObject = SugarThemeRegistry::current();
146                 $css = $themeObject->getCSS();
147         $favicon = $themeObject->getImageURL('sugar_icon.ico',false);
148         $ss->assign('FAVICON_URL',getJSPath($favicon));
149         $ss->assign('SUGAR_CSS', $css);
150         $ss->assign('PAGETITLE', $mod_strings[$this->pageTitleKey]);
151         
152         
153
154         $ss->assign("MESSAGE",$message);
155         $ss->assign("ACTION",$action);
156         $ss->assign("IMPORT_MODULE",$module);
157         $ss->assign("MOD", $GLOBALS['mod_strings']);
158         $ss->assign("SOURCE","");
159         if ( isset($_REQUEST['source']) )
160             $ss->assign("SOURCE", $_REQUEST['source']);
161
162         $content = $this->ss->fetch('modules/Import/tpls/error.tpl');
163         $this->ss->assign("CONTENT",$content);
164         
165         ob_start();
166         $this->options['show_javascript'] = true;
167         $this->renderJavascript();
168         $this->options['show_javascript'] = false;
169         $script = ob_get_contents().$themeObject->getJS();
170         $ss->assign("SUGAR_JS",$script);
171         ob_end_clean();
172
173         echo json_encode(array(
174             'html'          => $content,
175             'submitContent' => "",
176             'title'         => $mod_strings[$this->pageTitleKey],
177             'script'        => $script,
178          ));
179     }
180 }