Passed
Push — scrutinizer-code-quality ( 09f5a1...c4c5fb )
by Adam
56:05 queued 14:08
created

AM_TaskTemplates_sugar::AM_TaskTemplates_sugar()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 10
Code Lines 7

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 6
Metric Value
cc 2
eloc 7
nc 2
nop 0
dl 0
loc 10
ccs 0
cts 1
cp 0
crap 6
rs 9.4285
1
<?PHP
2
/*********************************************************************************
3
 * SugarCRM Community Edition is a customer relationship management program developed by
4
 * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
5
 *
6
 * This program is free software; you can redistribute it and/or modify it under
7
 * the terms of the GNU Affero General Public License version 3 as published by the
8
 * Free Software Foundation with the addition of the following permission added
9
 * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
10
 * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
11
 * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
12
 *
13
 * This program is distributed in the hope that it will be useful, but WITHOUT
14
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15
 * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
16
 * details.
17
 *
18
 * You should have received a copy of the GNU Affero General Public License along with
19
 * this program; if not, see http://www.gnu.org/licenses or write to the Free
20
 * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21
 * 02110-1301 USA.
22
 *
23
 * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
24
 * SW2-130, Cupertino, CA 95014, USA. or at email address [email protected].
25
 *
26
 * The interactive user interfaces in modified source and object code versions
27
 * of this program must display Appropriate Legal Notices, as required under
28
 * Section 5 of the GNU Affero General Public License version 3.
29
 *
30
 * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
31
 * these Appropriate Legal Notices must retain the display of the "Powered by
32
 * SugarCRM" logo. If the display of the logo is not reasonably feasible for
33
 * technical reasons, the Appropriate Legal Notices must display the words
34
 * "Powered by SugarCRM".
35
 ********************************************************************************/
36
37
/**
38
 * THIS CLASS IS GENERATED BY MODULE BUILDER
39
 * PLEASE DO NOT CHANGE THIS CLASS
40
 * PLACE ANY CUSTOMIZATIONS IN AM_TaskTemplates
41
 */
42
43
44
class AM_TaskTemplates_sugar extends Basic {
45
	var $new_schema = true;
46
	var $module_dir = 'AM_TaskTemplates';
47
	var $object_name = 'AM_TaskTemplates';
48
	var $table_name = 'am_tasktemplates';
49
	var $importable = false;
50
	var $disable_row_level_security = true ; // to ensure that modules created and deployed under CE will continue to function under team security if the instance is upgraded to PRO
51
		var $id;
52
		var $name;
53
		var $date_entered;
54
		var $date_modified;
55
		var $modified_user_id;
56
		var $modified_by_name;
57
		var $created_by;
58
		var $created_by_name;
59
		var $description;
60
		var $deleted;
61
		var $created_by_link;
62
		var $modified_user_link;
63
		var $assigned_user_id;
64
		var $assigned_user_name;
65
		var $assigned_user_link;
66
		var $status;
67
		var $priority;
68
		var $percent_complete;
69
		var $predecessors;
70
		var $milestone_flag;
71
		var $relationship_type;
72
		var $task_number;
73
		var $order_number;
74
		var $estimated_effort;
75
		var $utilization;
76
		var $duration;
77
78 6
    function __construct(){
79 6
        parent::__construct();
80 6
    }
81
82
    /**
83
     * @deprecated deprecated since version 7.6, PHP4 Style Constructors are deprecated and will be remove in 7.8, please update your code, use __construct instead
84
     */
85
    function AM_TaskTemplates_sugar(){
86
        $deprecatedMessage = 'PHP4 Style Constructors are deprecated and will be remove in 7.8, please update your code';
87
        if(isset($GLOBALS['log'])) {
88
            $GLOBALS['log']->deprecated($deprecatedMessage);
89
        }
90
        else {
91
            trigger_error($deprecatedMessage, E_USER_DEPRECATED);
92
        }
93
        self::__construct();
94
    }
95
96
97 6
	function bean_implements($interface){
98
		switch($interface){
99 6
			case 'ACL': return true;
0 ignored issues
show
Coding Style introduced by
The case body in a switch statement must start on the line following the statement.

According to the PSR-2, the body of a case statement must start on the line immediately following the case statement.

switch ($expr) {
case "A":
    doSomething(); //right
    break;
case "B":

    doSomethingElse(); //wrong
    break;

}

To learn more about the PSR-2 coding standard, please refer to the PHP-Fig.

Loading history...
Coding Style introduced by
Terminating statement must be on a line by itself

As per the PSR-2 coding standard, the break (or other terminating) statement must be on a line of its own.

switch ($expr) {
     case "A":
         doSomething();
         break; //wrong
     case "B":
         doSomething();
         break; //right
     case "C:":
         doSomething();
         return true; //right
 }

To learn more about the PSR-2 coding standard, please refer to the PHP-Fig.

Loading history...
100
		}
101
		return false;
102
}
103
104
}
105
?>