]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Administration/SupportPortal.php
Release 6.2.0
[Github/sugarcrm.git] / modules / Administration / SupportPortal.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
39
40
41
42
43
44 global $mod_strings;
45 global $app_list_strings;
46 global $app_strings;
47 global $theme;
48 global $current_user;
49 global $currentModule;
50
51 switch ($_REQUEST['view']) {
52         case "support_portal":
53                 if (!is_admin($current_user)) sugar_die("Unauthorized access to administration.");
54                 $GLOBALS['log']->info("Administration SupportPortal");
55
56                 $iframe_url = add_http("www.sugarcrm.com/network/redirect.php?tmpl=network");
57         
58         echo getClassicModuleTitle(
59             "Administration", 
60             array(
61                 "<a href='index.php?module=Administration&action=index'>".translate('LBL_MODULE_NAME','Administration')."</a>",
62                $mod_strings['LBL_SUPPORT_TITLE'],
63                ), 
64             false
65             );
66         
67         $sugar_smarty = new Sugar_Smarty();
68         $sugar_smarty->assign('iframeURL', $iframe_url);
69         echo $sugar_smarty->fetch('modules/Administration/SupportPortal.tpl');
70
71                 break;
72         default:
73
74                 $send_version = isset($_REQUEST['version']) ? $_REQUEST['version'] : "";
75                 $send_edition = isset($_REQUEST['edition']) ? $_REQUEST['edition'] : "";
76                 $send_lang = isset($_REQUEST['lang']) ? $_REQUEST['lang'] : "";
77                 $send_module = isset($_REQUEST['help_module']) ? $_REQUEST['help_module'] : "";
78                 $send_action = isset($_REQUEST['help_action']) ? $_REQUEST['help_action'] : "";
79                 $send_key = isset($_REQUEST['key']) ? $_REQUEST['key'] : "";
80                 $send_anchor = '';
81                 // awu: Fixes the ProjectTasks pluralization issue -- must fix in later versions.
82                 if ($send_module == 'ProjectTasks')
83                         $send_module = 'ProjectTask';
84         if ($send_module == 'ProductCatalog')
85                 $send_module = 'ProductTemplates';
86         if ($send_module == 'TargetLists')
87                 $send_module = 'ProspectLists';
88         if ($send_module == 'Targets')
89                 $send_module = 'Prospects';                            
90                 $helpPath = 'modules/'.$send_module.'/language/'.$send_lang.'.help.'.$send_action.'.html';
91
92                 $sugar_smarty = new Sugar_Smarty();
93
94                 //if the language is english then be sure to skip this check, otherwise go to the support
95                 //portal if the file is not found.
96                 if ($send_lang != 'en_us' && file_exists($helpPath))
97                 {
98                         $sugar_smarty->assign('helpFileExists', TRUE);
99                         $sugar_smarty->assign('helpPath', $helpPath);
100                         $sugar_smarty->assign('helpBar', getHelpBar($send_module));
101                         $sugar_smarty->assign('bookmarkScript', bookmarkJS());
102                         $sugar_smarty->assign('title', $mod_strings['LBL_SUGARCRM_HELP'] . " - " . $send_module);
103                         $sugar_smarty->assign('styleSheet', SugarThemeRegistry::current()->getCSS());
104                         $sugar_smarty->assign('table', getTable());
105                         $sugar_smarty->assign('endtable', endTable());
106                         $sugar_smarty->assign('charset', $app_strings['LBL_CHARSET']);
107                         echo $sugar_smarty->fetch('modules/Administration/SupportPortal.tpl');                  
108                         
109                 } else {
110                         if(empty($send_module)){
111                                 $send_module = 'toc';
112                         }
113                         
114                         $dev_status = 'GA';
115                         //If there is an alphabetic portion between the decimal prefix and integer suffix, then use the
116                         //value there as the dev_status value
117                         $dev_status = getVersionStatus($GLOBALS['sugar_version']);
118                         $send_version = getMajorMinorVersion($GLOBALS['sugar_version']);
119                         $editionMap = array('ENT' => 'Enterprise', 'PRO' => 'Professional', 'CE' => 'Community_Edition');
120                         if(!empty($editionMap[$send_edition])){
121                                 $send_edition = $editionMap[$send_edition];
122                         }
123                         
124                         //map certain modules
125                         $sendModuleMap = array(
126                                                                 'administration' => array(
127                                                                                                         array('name' => 'Administration', 'action' => 'supportportal', 'anchor' => '1910574'),
128                                                                                                         array('name' => 'Administration', 'action' => 'updater', 'anchor' => '1910574'),
129                                                                                                         array('name' => 'Administration', 'action' => 'licensesettings', 'anchor' => '1910574'),
130                                                                                                         array('name' => 'Administration', 'action' => 'diagnostic', 'anchor' => '1111949'),
131                                                                                                         array('name' => 'Administration', 'action' => 'listviewofflineclient', 'anchor' => '1111949'),
132                                                                                                         array('name' => 'Administration', 'action' => 'enablewirelessmodules', 'anchor' => '1111949'),
133                                                                                                         array('name' => 'Administration', 'action' => 'backups', 'anchor' => '1111949'),
134                                                                                                         array('name' => 'Administration', 'action' => 'upgrade', 'anchor' => '1111949'),
135                                                                                                         array('name' => 'Administration', 'action' => 'locale', 'anchor' => '1111949'),
136                                                                                                         array('name' => 'Administration', 'action' => 'themesettings', 'anchor' => '1111949'),
137                                                                                                         array('name' => 'Administration', 'action' => 'passwordmanager', 'anchor' => '1446494'),
138                                                                                                         array('name' => 'Administration', 'action' => 'upgradewizard', 'anchor' => '1168410'),
139                                                                                                         array('name' => 'Administration', 'action' => 'configuretabs', 'anchor' => '1168410'),
140                                                                                                         array('name' => 'Administration', 'action' => 'configuresubpanels', 'anchor' => '1168410'),
141                                                                                                         array('name' => 'Administration', 'action' => 'wizard', 'anchor' => '1168410'),
142                                                                                                 ),
143                                                                 'calls' => array(array('name' => 'Activities')), 
144                                                                 'tasks' => array(array('name' => 'Activities')), 
145                                                                 'meetings' => array(array('name' => 'Activities')), 
146                                                                 'notes' => array(array('name' => 'Activities')),
147                                                                 'calendar' => array(array('name' => 'Activities')),
148                                                                 'configurator' => array(array('name' => 'Administration', 'anchor' => '1878359')),
149                                                                 'upgradewizard' => array(array('name' => 'Administration', 'anchor' => '1878359')),
150                                                                 'schedulers' => array(array('name' => 'Administration', 'anchor' => '1878359')),
151                                                                 'sugarfeed' => array(array('name' => 'Administration', 'anchor' => '1878359')),
152                                                                 'connectors' => array(array('name' => 'Administration', 'anchor' => '1878359')),
153                                                                 'trackers' => array(array('name' => 'Administration', 'anchor' => '1878359')),
154                                                                 'currencies' => array(array('name' => 'Administration', 'anchor' => '1878359')),
155                                                                 'aclroles' => array(array('name' => 'Administration', 'anchor' => '1916499')),
156                                                                 'roles' => array(array('name' => 'Administration', 'anchor' => '1916499')),
157                                                                 'teams' => array(array('name' => 'Administration', 'anchor' => '1916499')),
158                                                                 'users' => array(array('name' => 'Administration', 'anchor' => '1916499'), array('name' => 'Administration', 'action' => 'detailview', 'anchor' => '1916518')),
159                                                                 'modulebuilder' => array(array('name' => 'Administration', 'anchor' => '1168410')),
160                                                                 'studio' => array(array('name' => 'Administration', 'anchor' => '1168410')),
161                                                                 'workflow' => array(array('name' => 'Administration', 'anchor' => '1168410')),
162                                                                 'producttemplates' => array(array('name' => 'Administration', 'anchor' => '1957376')),
163                                                                 'productcategories' => array(array('name' => 'Administration', 'anchor' => '1957376')),
164                                                                 'producttypes' => array(array('name' => 'Administration', 'anchor' => '1957376')),
165                                                                 'manufacturers' => array(array('name' => 'Administration', 'anchor' => '1957376')),
166                                                                 'shippers' => array(array('name' => 'Administration', 'anchor' => '1957376')),
167                                                                 'taxrates' => array(array('name' => 'Administration', 'anchor' => '1957376')),
168                                                                 'releases' => array(array('name' => 'Administration', 'anchor' => '1868932')),
169                                                                 'timeperiods' => array(array('name' => 'Administration', 'anchor' => '1957639')),
170                                                                 'contracttypes' => array(array('name' => 'Administration', 'anchor' => '1957677')),
171                                                                 'contracttype' => array(array('name' => 'Administration', 'anchor' => '1957677')),
172                                                                 'emailman' => array(array('name' => 'Administration', 'anchor' => '1445484')),
173                                                                 'inboundemail' => array(array('name' => 'Administration', 'anchor' => '1445484')),
174                                                                 'emailtemplates' => array(array('name' => 'Emails')),
175                                                                 'prospects' => array(array('name' => 'Campaigns')),
176                                                                 'prospectlists' => array(array('name' => 'Campaigns')),
177                                                                 'reportmaker' => array(array('name' => 'Reports')),
178                                                                 'customqueries' => array(array('name' => 'Reports')),
179                                                                 'quotas' => array(array('name' => 'Forecasts')),
180                                                                 'projecttask' => array(array('name' => 'Projects')),
181                                                                 'project' => array(array('name' => 'Projects'), array('name' => 'Dashboard', 'action' => 'dashboard'), ),
182                                                                 'projecttemplate' => array(array('name' => 'Projects')),
183                                                                 'datasets' => array(array('name' => 'Reports')),
184                                                                 'dataformat' => array(array('name' => 'Reports')),
185                                                                 'employees' => array(array('name' => 'Administration', 'anchor' => '1957677')),
186                                                                 'kbdocuments' => array(array('name' => 'Administration', 'action' => 'kbadminview', 'anchor' => '1957677')),
187                                                          );
188                                                          
189                         if(!empty($sendModuleMap[strtolower($send_module)])){
190                                 $mappings = $sendModuleMap[strtolower($send_module)];
191                                 
192                                 foreach($mappings as $map){
193                                         if(!empty($map['action'])){
194                                                 if($map['action'] == strtolower($send_action)){
195                                                         $send_module = $map['name'];
196                                                         if(!empty($map['anchor'])){
197                                                                 $send_anchor = $map['anchor'];
198                                                         }
199                                                 }
200                                         }else{
201                                                 $send_module = $map['name'];
202                                                 if(!empty($map['anchor'])){
203                                                                 $send_anchor = $map['anchor'];
204                                                 }
205                                         }
206                                 }
207                                 //$send_module = $sendModuleMap[strtolower($send_module)];
208                         }
209                         $sendUrl = "http://www.sugarcrm.com/crm/product_doc.php?edition={$send_edition}&version={$send_version}&lang={$send_lang}&module={$send_module}&help_action={$send_action}&status={$dev_status}&key={$send_key}&anchor={$send_anchor}";
210                         if(!empty($send_anchor)){
211                                 $sendUrl .= "&anchor=".$send_anchor;
212                         }
213                         $iframe_url = $sendUrl;
214                         
215                         header("Location: {$iframe_url}");
216                         
217                         //$sugar_smarty->assign('helpFileExists', FALSE);
218                         //$sugar_smarty->assign('iframeURL', $iframe_url);
219                 }
220                 break;
221 }
222
223
224 function getHelpBar($moduleName)
225 {
226         global $mod_strings;
227
228         $helpBar = "<table width='100%'><tr><td align='right'>" .
229                         "<a href='javascript:window.print()'>" . $mod_strings['LBL_HELP_PRINT'] . "</a> - " .
230                         "<a href='mailto:?subject=" . $mod_strings['LBL_SUGARCRM_HELP'] . "&body=" . rawurlencode(getCurrentURL()) . "'>" . $mod_strings['LBL_HELP_EMAIL'] . "</a> - " .
231                         "<a href='#' onmousedown=\"createBookmarkLink('" . $mod_strings['LBL_SUGARCRM_HELP'] . " - " . $moduleName . "', '" . getCurrentURL() . "'" .")\">" . $mod_strings['LBL_HELP_BOOKMARK'] . "</a>" .
232                         "</td></tr></table>";
233
234         return $helpBar;
235 }
236
237 function getTable()
238 {
239         $table = "<table class='tabForm'><tr><td>";
240
241         return $table;
242 }
243
244 function endTable()
245 {
246         $endtable = "</td></tr></table>";
247
248         return $endtable;
249 }
250
251 function bookmarkJS() {
252
253 $script =
254 <<<EOQ
255 <script type="text/javascript" language="JavaScript">
256 <!-- Begin
257 function createBookmarkLink(title, url){
258         if (document.all)
259                 window.external.AddFavorite(url, title);
260         else if (window.sidebar)
261                 window.sidebar.addPanel(title, url, "")
262 }
263 //  End -->
264 </script>
265 EOQ;
266
267 return $script;
268 }
269
270 ?>