ProjectViewDetail   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 27
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 2

Test Coverage

Coverage 0%
Metric Value
dl 0
loc 27
ccs 0
cts 17
cp 0
rs 10
wmc 3
lcom 1
cbo 2

1 Method

Rating   Name   Duplication   Size   Complexity  
A display() 0 21 3
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
44
 * Description: This file is used to override the default Meta-data EditView behavior
45
 * to provide customization specific to the Calls module.
46
 * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
47
 * All Rights Reserved.
48
 * Contributor(s): ______________________________________..
49
 ********************************************************************************/
50
51
require_once('include/MVC/View/views/view.detail.php');
52
53
class ProjectViewDetail extends ViewDetail 
54
{
55
 	/**
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...
56
 	 * @see SugarView::display()
57
 	 */
58
 	public function display() 
59
 	{
60
		global $beanFiles;
61
		require_once($beanFiles['Project']);
62
63
		$focus = new Project();
64
		$focus->retrieve($_REQUEST['record']);
65
66
		global $app_list_strings, $current_user, $mod_strings;
67
		$this->ss->assign('APP_LIST_STRINGS', $app_list_strings);
68
69
		if($current_user->id == $focus->assigned_user_id || $current_user->is_admin){
70
			$this->ss->assign('OWNER_ONLY', true);
71
		}
72
		else{
73
			$this->ss->assign('OWNER_ONLY', false);
74
		}
75
		$this->ss->assign("IS_TEMPLATE", 0);
76
77
 		parent::display();
78
 	}
79
}
80