]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Administration/views/view.configureajaxui.php
Release 6.5.0
[Github/sugarcrm.git] / modules / Administration / views / view.configureajaxui.php
1 <?php
2 if (!defined('sugarEntry') || !sugarEntry) {
3     die('Not A Valid Entry Point');
4 }
5 /*********************************************************************************
6  * SugarCRM Community Edition is a customer relationship management program developed by
7  * SugarCRM, Inc. Copyright (C) 2004-2012 SugarCRM Inc.
8  * 
9  * This program is free software; you can redistribute it and/or modify it under
10  * the terms of the GNU Affero General Public License version 3 as published by the
11  * Free Software Foundation with the addition of the following permission added
12  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
13  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
14  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
15  * 
16  * This program is distributed in the hope that it will be useful, but WITHOUT
17  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
18  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
19  * details.
20  * 
21  * You should have received a copy of the GNU Affero General Public License along with
22  * this program; if not, see http://www.gnu.org/licenses or write to the Free
23  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
24  * 02110-1301 USA.
25  * 
26  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
27  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
28  * 
29  * The interactive user interfaces in modified source and object code versions
30  * of this program must display Appropriate Legal Notices, as required under
31  * Section 5 of the GNU Affero General Public License version 3.
32  * 
33  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
34  * these Appropriate Legal Notices must retain the display of the "Powered by
35  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
36  * technical reasons, the Appropriate Legal Notices must display the words
37  * "Powered by SugarCRM".
38  ********************************************************************************/
39
40 /*********************************************************************************
41
42  * Description:  TODO: To be written.
43  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
44  * All Rights Reserved.
45  * Contributor(s): ______________________________________..
46  ********************************************************************************/
47
48 class ViewConfigureAjaxUI extends SugarView
49 {
50     /**
51      * @see SugarView::_getModuleTitleParams()
52      */
53     protected function _getModuleTitleParams($browserTitle = false)
54     {
55         return array(
56             "<a href='index.php?module=Administration&action=index'>" . translate('LBL_MODULE_NAME') . "</a>",
57             translate('LBL_CONFIG_AJAX')
58         );
59     }
60
61     /**
62      * @see SugarView::preDisplay()
63      */
64     public function preDisplay()
65     {
66         global $current_user;
67
68         if (!is_admin($current_user))
69         {
70             sugar_die("Unauthorized access to administration.");
71         }
72     }
73
74     /**
75      * @see SugarView::display()
76      */
77     public function display()
78     {
79         global $sugar_config, $moduleList;
80         //create array of subpanels to show, used to create Drag and Drop widget
81         $enabled = array();
82         $disabled = array();
83         $banned = ajaxBannedModules();
84
85         foreach($moduleList as $module)
86         {
87             if (!in_array($module, $banned))
88             {
89                 $enabled[] = array("module" => $module, 'label' => translate($module));
90             }
91         }
92         if (!empty($sugar_config['addAjaxBannedModules']))
93         {
94             foreach( $sugar_config['addAjaxBannedModules'] as $module)
95             {
96                 $disabled[] = array("module" => $module, 'label' => translate($module));
97             }
98         }
99
100         $this->ss->assign('enabled_mods', json_encode($enabled));
101         $this->ss->assign('disabled_mods', json_encode($disabled));
102         $this->ss->assign('title',$this->getModuleTitle(false));
103
104         echo $this->ss->fetch('modules/Administration/templates/ConfigureAjaxUI.tpl');
105     }
106 }