]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Import/views/ImportView.php
Release 6.5.0
[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-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 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     }
62
63     /**
64      * @see SugarView::getMenu()
65      */
66     public function getMenu($module = null)
67     {
68         global $mod_strings, $current_language;
69
70         if ( empty($module) )
71             $module = $this->importModule;
72
73         $old_mod_strings = $mod_strings;
74         $mod_strings = return_module_language($current_language, $module);
75         $returnMenu = parent::getMenu($module);
76         $mod_strings = $old_mod_strings;
77
78         return $returnMenu;
79     }
80
81         /**
82      * @see SugarView::_getModuleTab()
83      */
84         protected function _getModuleTab()
85     {
86         global $app_list_strings, $moduleTabMap;
87
88                 // Need to figure out what tab this module belongs to, most modules have their own tabs, but there are exceptions.
89         if ( !empty($_REQUEST['module_tab']) )
90             return $_REQUEST['module_tab'];
91         elseif ( isset($moduleTabMap[$this->importModule]) )
92             return $moduleTabMap[$this->importModule];
93         // Default anonymous pages to be under Home
94         elseif ( !isset($app_list_strings['moduleList'][$this->importModule]) )
95             return 'Home';
96         else
97             return $this->importModule;
98         }
99
100     /**
101      * Send our output to the importer controller.
102      * 
103      * @param string $html
104      * @param string $submitContent
105      * @param string $script
106      * @param bool $encode
107      * @return void
108      */
109     protected function sendJsonOutput($html = "", $submitContent = "", $script = "", $encode = FALSE)
110     {
111         $title = $this->getModuleTitle(false);
112         $out = array(
113             'html'          => $html,
114             'submitContent' => $submitContent,
115             'title'         => $title,
116             'script'        => $script);
117
118         if($encode){
119             array_walk($out, create_function('&$val', '$val = htmlspecialchars($val,ENT_NOQUOTES);'));
120         }
121         echo json_encode($out);
122     }
123
124     /**
125          * @see SugarView::_getModuleTitleParams()
126          */
127         protected function _getModuleTitleParams($browserTitle = false)
128         {
129             global $mod_strings, $app_list_strings;
130             $returnArray = array(string_format($mod_strings[$this->pageTitleKey], array($this->currentStep)));
131
132             return $returnArray;
133     }
134
135     protected function getInstruction()
136     {
137         global $mod_strings;
138
139         $ins = '';
140         
141         if ($this->instruction) {
142             $ins_string = $mod_strings[$this->instruction];
143             $ins = '<div class="import_instruction">' . $ins_string . '</div>';
144         }
145
146         return $ins;
147     }
148
149      /**
150      * Displays the Smarty template for an error
151      *
152      * @param string $message error message to show
153      * @param string $module what module we were importing into
154      * @param string $action what page we should go back to
155      */
156     protected function _showImportError($message,$module,$action = 'Step1')
157     {
158         $ss = new Sugar_Smarty();
159
160         $ss->assign("MESSAGE",$message);
161         $ss->assign("ACTION",$action);
162         $ss->assign("IMPORT_MODULE",$module);
163         $ss->assign("MOD", $GLOBALS['mod_strings']);
164         $ss->assign("SOURCE","");
165         if ( isset($_REQUEST['source']) )
166             $ss->assign("SOURCE", $_REQUEST['source']);
167
168         echo $ss->fetch('modules/Import/tpls/error.tpl');
169     }
170 }