AdministrationViewGlobalsearchsettings::display()   A
last analyzed

Complexity

Conditions 2
Paths 2

Size

Total Lines 23
Code Lines 15

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 6
Metric Value
cc 2
eloc 15
nc 2
nop 0
dl 0
loc 23
ccs 0
cts 19
cp 0
crap 6
rs 9.0856
1
<?php
2
if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3
4
/*********************************************************************************
5
 * SugarCRM Community Edition is a customer relationship management program developed by
6
 * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
7
8
 * SuiteCRM is an extension to SugarCRM Community Edition developed by Salesagility Ltd.
9
 * Copyright (C) 2011 - 2014 Salesagility Ltd.
10
 *
11
 * This program is free software; you can redistribute it and/or modify it under
12
 * the terms of the GNU Affero General Public License version 3 as published by the
13
 * Free Software Foundation with the addition of the following permission added
14
 * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
15
 * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
16
 * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
17
 *
18
 * This program is distributed in the hope that it will be useful, but WITHOUT
19
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
20
 * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
21
 * details.
22
 *
23
 * You should have received a copy of the GNU Affero General Public License along with
24
 * this program; if not, see http://www.gnu.org/licenses or write to the Free
25
 * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
26
 * 02110-1301 USA.
27
 *
28
 * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
29
 * SW2-130, Cupertino, CA 95014, USA. or at email address [email protected].
30
 *
31
 * The interactive user interfaces in modified source and object code versions
32
 * of this program must display Appropriate Legal Notices, as required under
33
 * Section 5 of the GNU Affero General Public License version 3.
34
 *
35
 * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
36
 * these Appropriate Legal Notices must retain the display of the "Powered by
37
 * SugarCRM" logo and "Supercharged by SuiteCRM" logo. If the display of the logos is not
38
 * reasonably feasible for  technical reasons, the Appropriate Legal Notices must
39
 * display the words  "Powered by SugarCRM" and "Supercharged by SuiteCRM".
40
 ********************************************************************************/
41
42
43
class AdministrationViewGlobalsearchsettings extends SugarView
44
{
45
 	/**
0 ignored issues
show
Coding Style introduced by
There is some trailing whitespace on this line which should be avoided as per coding-style.
Loading history...
46
	 * @see SugarView::_getModuleTitleParams()
47
	 */
48
	protected function _getModuleTitleParams($browserTitle = false)
49
	{
50
	    global $mod_strings;
51
52
    	return array(
53
    	   "<a href='index.php?module=Administration&action=index'>".translate('LBL_MODULE_NAME','Administration')."</a>",
54
    	   $mod_strings['LBL_GLOBAL_SEARCH_SETTINGS']
55
    	   );
56
    }
57
58
    /**
59
	 * @see SugarView::_getModuleTab()
60
	 */
61
	protected function _getModuleTab()
62
    {
63
        return 'Administration';
64
    }
65
66
    /**
67
	 * @see SugarView::display()
68
	 */
69
	public function display()
70
    {
71
    	require_once('modules/Home/UnifiedSearchAdvanced.php');
72
		$usa = new UnifiedSearchAdvanced();
73
        global $mod_strings, $app_strings, $app_list_strings;
74
75
        $sugar_smarty = new Sugar_Smarty();
76
        $sugar_smarty->assign('APP', $app_strings);
77
        $sugar_smarty->assign('MOD', $mod_strings);
78
        $sugar_smarty->assign('moduleTitle', $this->getModuleTitle(false));
79
80
        $modules = $usa->retrieveEnabledAndDisabledModules();
81
82
        $sugar_smarty->assign('enabled_modules', json_encode($modules['enabled']));
83
        $sugar_smarty->assign('disabled_modules', json_encode($modules['disabled']));
84
        $tpl = 'modules/Administration/templates/GlobalSearchSettings.tpl';
85
        if(file_exists('custom/' . $tpl))
86
        {
87
           $tpl = 'custom/' . $tpl;
88
        }
89
        echo $sugar_smarty->fetch($tpl);
90
91
    }
92
/*
93
    protected function isFTSConnectionValid()
94
    {
95
        require_once('include/SugarSearchEngine/SugarSearchEngineFactory.php');
96
        $searchEngine = SugarSearchEngineFactory::getInstance();
97
        $result = $searchEngine->getServerStatus();
98
        if($result['valid'])
99
            return TRUE;
100
        else
101
            return FALSE;
102
    }
103
	*/
104
}