]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Administration/controller.php
Release 6.2.0
[Github/sugarcrm.git] / modules / Administration / controller.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  * Description:  TODO: To be written.
41  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
42  * All Rights Reserved.
43  * Contributor(s): ______________________________________..
44  ********************************************************************************/
45
46 class AdministrationController extends SugarController
47 {
48     public function action_savetabs()
49     {
50         require_once('include/SubPanel/SubPanelDefinitions.php');
51         require_once('modules/MySettings/TabController.php');
52
53         
54         global $current_user, $app_strings;
55         
56         if (!is_admin($current_user)) sugar_die($app_strings['ERR_NOT_ADMIN']);
57
58         // handle the tabs listing
59         $toDecode = html_entity_decode  ($_REQUEST['enabled_tabs'], ENT_QUOTES);
60         $enabled_tabs = json_decode($toDecode);
61         $tabs = new TabController();
62         $tabs->set_system_tabs($enabled_tabs);
63         $tabs->set_users_can_edit(isset($_REQUEST['user_edit_tabs']) && $_REQUEST['user_edit_tabs'] == 1);
64
65         // handle the subpanels
66         if(isset($_REQUEST['disabled_tabs'])) {
67             $disabledTabs = json_decode(html_entity_decode($_REQUEST['disabled_tabs'], ENT_QUOTES));
68             $disabledTabsKeyArray = TabController::get_key_array($disabledTabs);
69             SubPanelDefinitions::set_hidden_subpanels($disabledTabsKeyArray);
70         }
71
72         header("Location: index.php?module=Administration&action=ConfigureTabs");
73     }
74
75     public function action_savelanguages()
76     {
77         global $sugar_config;
78         $toDecode = html_entity_decode  ($_REQUEST['disabled_langs'], ENT_QUOTES);
79         $disabled_langs = json_decode($toDecode);
80         $toDecode = html_entity_decode  ($_REQUEST['enabled_langs'], ENT_QUOTES);
81         $enabled_langs = json_decode($toDecode);
82         $cfg = new Configurator();
83         $cfg->config['disabled_languages'] = join(',', $disabled_langs);
84         // TODO: find way to enforce order
85         $cfg->handleOverride();
86         header("Location: index.php?module=Administration&action=Languages");
87     }
88
89     public function action_updatewirelessenabledmodules()
90     {
91         require_once('modules/Administration/Forms.php');
92
93         global $mod_strings;
94         global $app_list_strings;
95         global $app_strings;
96         global $current_user;
97
98         if (!is_admin($current_user)) sugar_die($app_strings['ERR_NOT_ADMIN']);
99         
100         require_once('modules/Configurator/Configurator.php');
101         $configurator = new Configurator();
102         $configurator->saveConfig();
103
104         if ( isset( $_REQUEST['enabled_modules'] ) && ! empty ($_REQUEST['enabled_modules'] ))
105         {
106             $updated_enabled_modules = array () ;
107             foreach ( explode (',', $_REQUEST['enabled_modules'] ) as $e )
108             {
109                 $updated_enabled_modules [ $e ] = array () ;
110             }
111
112             // transfer across any pre-existing definitions for the enabled modules from the current module registry
113             if (file_exists('include/MVC/Controller/wireless_module_registry.php'))
114             {
115                 require('include/MVC/Controller/wireless_module_registry.php');
116                 if ( ! empty ( $wireless_module_registry ) )
117                 {
118                     foreach ( $updated_enabled_modules as $e => $def )
119                     {
120                         if ( isset ( $wireless_module_registry [ $e ] ) )
121                         {
122                             $updated_enabled_modules [ $e ] = $wireless_module_registry [ $e ] ;
123                         }
124
125                     }
126                 }
127             }
128
129             $filename = 'custom/include/MVC/Controller/wireless_module_registry.php' ;
130
131             mkdir_recursive ( dirname ( $filename ) ) ;
132             write_array_to_file ( 'wireless_module_registry', $updated_enabled_modules, $filename );
133
134         }
135
136         echo "true";
137     }
138
139
140     /**
141      * action_saveglobalsearchsettings
142      *
143      * This method handles saving the selected modules to display in the Global Search Settings.
144      * It instantiates an instance of UnifiedSearchAdvanced and then calls the saveGlobalSearchSettings
145      * method.
146      *
147      */
148     public function action_saveglobalsearchsettings()
149     {
150                  global $current_user, $app_strings;
151                  
152                  if (!is_admin($current_user)) 
153                  {
154                      sugar_die($GLOBALS['app_strings']['ERR_NOT_ADMIN']);       
155                  }
156                  
157          try {
158                  require_once('modules/Home/UnifiedSearchAdvanced.php');
159                  $unifiedSearchAdvanced = new UnifiedSearchAdvanced();
160                  $unifiedSearchAdvanced->saveGlobalSearchSettings();
161                  echo "true";
162          } catch (Exception $ex) {
163                  echo "false";
164          }
165     }
166 }