]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Administration/ConfigureShortcutBar.php
Add .gitignore
[Github/sugarcrm.git] / modules / Administration / ConfigureShortcutBar.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM 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 require_once("include/JSON.php");
47 $json = new JSON();
48
49 global $mod_strings;
50 global $app_list_strings;
51 global $app_strings;
52 global $current_user;
53
54 if (!is_admin($current_user)) sugar_die("Unauthorized access to administration.");
55
56 $title = getClassicModuleTitle(
57             "Administration", 
58             array(
59                 "<a href='index.php?module=Administration&action=index'>{$mod_strings['LBL_MODULE_NAME']}</a>",
60                translate('LBL_CONFIGURE_SHORTCUT_BAR')
61                ), 
62             true
63             );
64 $msg = "";
65
66 global $theme, $currentModule, $app_list_strings, $app_strings;
67 $GLOBALS['log']->info("Administration ConfigureShortcutBar view");
68 $actions_path = "include/DashletContainer/Containers/DCActions.php";
69
70 //If save is set, save then let the user know if the save worked.
71 if (!empty($_REQUEST['enabled_modules']))
72 {
73         $toDecode = html_entity_decode  ($_REQUEST['enabled_modules'], ENT_QUOTES);
74         $modules = json_decode($toDecode);
75         $out = "<?php\n \$DCActions = \n" . var_export_helper ( $modules ) . ";";
76         if (!is_file("custom/" . $actions_path))
77            create_custom_directory("include/DashletContainer/Containers/");
78         if ( file_put_contents ( "custom/" . $actions_path, $out ) === false)
79            echo translate("LBL_SAVE_FAILED");
80         else  {
81            echo "true";
82         }
83         
84 } else {
85         include($actions_path);
86         //Start with the default module
87         $availibleModules = $DCActions;
88         //Add the ones currently on the layout
89         if (is_file('custom/' . $actions_path))
90         {
91             include('custom/' . $actions_path);
92             $availibleModules = array_merge($availibleModules, $DCActions);
93         }
94         //Next add the ones we detect as having quick create defs.
95         $modules = $app_list_strings['moduleList'];
96         foreach ($modules as $module => $modLabel)
97         {
98                 if (is_file("modules/$module/metadata/quickcreatedefs.php") || is_file("custom/modules/$module/metadata/quickcreatedefs.php"))
99                    $availibleModules[$module] = $module;
100         }
101         
102         $availibleModules = array_diff($availibleModules, $DCActions);
103         
104         $enabled = array();
105         foreach($DCActions as $mod)
106         {
107             $enabled[] = array("module" => $mod, 'label' => translate($mod));
108         }
109         
110         $disabled = array();
111         foreach($availibleModules as $mod)
112         {
113             $disabled[] = array("module" => $mod, 'label' => translate($mod));
114         }
115         
116         $this->ss->assign('APP', $GLOBALS['app_strings']);
117         $this->ss->assign('MOD', $GLOBALS['mod_strings']);
118         $this->ss->assign('title',  $title);
119         
120         $this->ss->assign('enabled_modules', $json->encode ( $enabled ));
121         $this->ss->assign('disabled_modules',$json->encode ( $disabled));
122         $this->ss->assign('description',  translate("LBL_CONFIGURE_SHORTCUT_BAR"));
123         $this->ss->assign('msg',  $msg);
124         
125         echo $this->ss->fetch('modules/Administration/templates/ShortcutBar.tpl');      
126 }
127 ?>