]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Configurator/views/view.edit.php
Release 6.2.3
[Github/sugarcrm.git] / modules / Configurator / views / view.edit.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  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
41  * All Rights Reserved.
42  * Contributor(s): ______________________________________..
43  ********************************************************************************/
44
45 require_once('modules/Configurator/Forms.php');
46 require_once('modules/Administration/Forms.php');
47 require_once('modules/Configurator/Configurator.php');
48 require_once('include/SugarLogger/SugarLogger.php');
49
50 class ConfiguratorViewEdit extends ViewEdit
51 {
52     /**
53          * @see SugarView::preDisplay()
54          */
55         public function preDisplay()
56     {
57         if(!is_admin($GLOBALS['current_user']))
58             sugar_die($GLOBALS['app_strings']['ERR_NOT_ADMIN']); 
59     }
60     
61     /**
62          * @see SugarView::_getModuleTitleParams()
63          */
64         protected function _getModuleTitleParams($browserTitle = false)
65         {
66             global $mod_strings;
67             
68         return array(
69            "<a href='index.php?module=Administration&action=index'>".translate('LBL_MODULE_NAME','Administration')."</a>",
70            $mod_strings['LBL_SYSTEM_SETTINGS']
71            );
72     }
73     
74         /**
75          * @see SugarView::display()
76          */
77         public function display()
78         {
79             global $current_user, $mod_strings, $app_strings, $app_list_strings, $sugar_config, $locale;
80             
81             $configurator = new Configurator();
82         $sugarConfig = SugarConfig::getInstance();
83         $focus = new Administration();
84         $configurator->parseLoggerSettings();
85         
86         $focus->retrieveSettings();
87         if(!empty($_POST['restore'])){
88             $configurator->restoreConfig();
89         }
90         
91         $this->ss->assign('MOD', $mod_strings);
92         $this->ss->assign('APP', $app_strings);
93         $this->ss->assign('APP_LIST', $app_list_strings);
94         $this->ss->assign('config', $configurator->config);
95         $this->ss->assign('error', $configurator->errors);
96         $this->ss->assign("AUTO_REFRESH_INTERVAL_OPTIONS", get_select_options_with_id($app_list_strings['dashlet_auto_refresh_options_admin'], isset($configurator->config['dashlet_auto_refresh_min']) ? $configurator->config['dashlet_auto_refresh_min'] : 30));
97         $this->ss->assign('LANGUAGES', get_languages());
98         $this->ss->assign("JAVASCRIPT",get_set_focus_js(). get_configsettings_js());
99         $this->ss->assign('company_logo', SugarThemeRegistry::current()->getImageURL('company_logo.png'));
100         $this->ss->assign("settings", $focus->settings);
101         $this->ss->assign("mail_sendtype_options", get_select_options_with_id($app_list_strings['notifymail_sendtype'], $focus->settings['mail_sendtype']));
102         if(!empty($focus->settings['proxy_on'])){
103             $this->ss->assign("PROXY_CONFIG_DISPLAY", 'inline');
104         }else{
105             $this->ss->assign("PROXY_CONFIG_DISPLAY", 'none');
106         }
107         if(!empty($focus->settings['proxy_auth'])){
108             $this->ss->assign("PROXY_AUTH_DISPLAY", 'inline');
109         }else{
110             $this->ss->assign("PROXY_AUTH_DISPLAY", 'none');
111         }
112         if (!empty($configurator->config['logger']['level'])) {
113             $this->ss->assign('log_levels', get_select_options_with_id(  LoggerManager::getLoggerLevels(), $configurator->config['logger']['level']));
114         } else {
115             $this->ss->assign('log_levels', get_select_options_with_id(  LoggerManager::getLoggerLevels(), ''));
116         }
117         if (!empty($configurator->config['logger']['file']['suffix'])) {
118             $this->ss->assign('filename_suffix', get_select_options_with_id(  SugarLogger::$filename_suffix,$configurator->config['logger']['file']['suffix']));
119         } else {
120             $this->ss->assign('filename_suffix', get_select_options_with_id(  SugarLogger::$filename_suffix,''));
121         }
122         
123         echo $this->getModuleTitle(false);
124         
125         $this->ss->display('modules/Configurator/tpls/EditView.tpl');
126         
127         $javascript = new javascript();
128         $javascript->setFormName("ConfigureSettings");
129         $javascript->addFieldGeneric("notify_fromaddress", "email", $mod_strings['LBL_NOTIFY_FROMADDRESS'], TRUE, "");
130         $javascript->addFieldGeneric("notify_subject", "varchar", $mod_strings['LBL_NOTIFY_SUBJECT'], TRUE, "");
131         $javascript->addFieldGeneric("proxy_host", "varchar", $mod_strings['LBL_PROXY_HOST'], TRUE, "");
132         $javascript->addFieldGeneric("proxy_port", "int", $mod_strings['LBL_PROXY_PORT'], TRUE, "");
133         $javascript->addFieldGeneric("proxy_password", "varchar", $mod_strings['LBL_PROXY_PASSWORD'], TRUE, "");
134         $javascript->addFieldGeneric("proxy_username", "varchar", $mod_strings['LBL_PROXY_USERNAME'], TRUE, "");
135         echo $javascript->getScript();
136         }
137 }