]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Administration/views/view.configuretabs.php
Release 6.5.0
[Github/sugarcrm.git] / modules / Administration / views / view.configuretabs.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  * 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 require_once('modules/Administration/Forms.php');
47 require_once('include/SubPanel/SubPanelDefinitions.php');
48 require_once('modules/MySettings/TabController.php');
49
50 class ViewConfiguretabs extends SugarView
51 {
52     /**
53          * @see SugarView::_getModuleTitleParams()
54          */
55         protected function _getModuleTitleParams($browserTitle = false)
56         {
57             global $mod_strings;
58             
59         return array(
60            "<a href='index.php?module=Administration&action=index'>".$mod_strings['LBL_MODULE_NAME']."</a>",
61            $mod_strings['LBL_CONFIG_TABS']
62            );
63     }
64     
65     /**
66          * @see SugarView::preDisplay()
67          */
68         public function preDisplay()
69         {
70             global $current_user;
71         
72             if (!is_admin($current_user)) {
73                 sugar_die("Unauthorized access to administration.");
74         }
75         }
76     
77     /**
78          * @see SugarView::display()
79          */
80         public function display()
81         {
82         global $mod_strings;
83         global $app_list_strings;
84         global $app_strings;
85         
86         require_once("modules/MySettings/TabController.php");
87         $controller = new TabController();
88         $tabs = $controller->get_tabs_system();
89         
90         $enabled= array();
91         foreach ($tabs[0] as $key=>$value)
92         {
93             $enabled[] = array("module" => $key, 'label' => translate($key));
94         }
95         $disabled = array();
96         foreach ($tabs[1] as $key=>$value)
97         {
98             $disabled[] = array("module" => $key, 'label' => translate($key));
99         }
100         
101         $user_can_edit = $controller->get_users_can_edit();
102         $this->ss->assign('APP', $GLOBALS['app_strings']);
103         $this->ss->assign('MOD', $GLOBALS['mod_strings']);
104         $this->ss->assign('user_can_edit',  $user_can_edit);
105         $this->ss->assign('enabled_tabs', json_encode($enabled));
106         $this->ss->assign('disabled_tabs', json_encode($disabled));
107         $this->ss->assign('title',$this->getModuleTitle(false));
108         
109         //get list of all subpanels and panels to hide 
110         $mod_list_strings_key_to_lower = array_change_key_case($app_list_strings['moduleList']);
111         $panels_arr = SubPanelDefinitions::get_all_subpanels();
112         $hidpanels_arr = SubPanelDefinitions::get_hidden_subpanels();
113         
114         if(!$hidpanels_arr || !is_array($hidpanels_arr)) $hidpanels_arr = array();
115         
116         //create array of subpanels to show, used to create Drag and Drop widget
117         $enabled = array();
118         foreach ($panels_arr as $key) {
119             if(empty($key)) continue;
120             $key = strtolower($key);
121             $enabled[] =  array("module" => $key, "label" => $mod_list_strings_key_to_lower[$key]);
122         }
123         
124         //now create array of subpanels to hide for use in Drag and Drop widget
125         $disabled = array();
126         foreach ($hidpanels_arr as $key) {
127             if(empty($key)) continue;
128             $key = strtolower($key);
129             $disabled[] =  array("module" => $key, "label" => $mod_list_strings_key_to_lower[$key]);
130         }
131         
132         $this->ss->assign('enabled_panels', json_encode($enabled));
133         $this->ss->assign('disabled_panels', json_encode($disabled));
134         
135         echo $this->ss->fetch('modules/Administration/templates/ConfigureTabs.tpl');    
136     }
137 }