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-2013 SugarCRM Inc. |
6
|
|
|
|
7
|
|
|
* SuiteCRM is an extension to SugarCRM Community Edition developed by Salesagility Ltd. |
8
|
|
|
* Copyright (C) 2011 - 2014 Salesagility Ltd. |
9
|
|
|
* |
10
|
|
|
* This program is free software; you can redistribute it and/or modify it under |
11
|
|
|
* the terms of the GNU Affero General Public License version 3 as published by the |
12
|
|
|
* Free Software Foundation with the addition of the following permission added |
13
|
|
|
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK |
14
|
|
|
* IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY |
15
|
|
|
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS. |
16
|
|
|
* |
17
|
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT |
18
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
19
|
|
|
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more |
20
|
|
|
* details. |
21
|
|
|
* |
22
|
|
|
* You should have received a copy of the GNU Affero General Public License along with |
23
|
|
|
* this program; if not, see http://www.gnu.org/licenses or write to the Free |
24
|
|
|
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
25
|
|
|
* 02110-1301 USA. |
26
|
|
|
* |
27
|
|
|
* You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road, |
28
|
|
|
* SW2-130, Cupertino, CA 95014, USA. or at email address [email protected]. |
29
|
|
|
* |
30
|
|
|
* The interactive user interfaces in modified source and object code versions |
31
|
|
|
* of this program must display Appropriate Legal Notices, as required under |
32
|
|
|
* Section 5 of the GNU Affero General Public License version 3. |
33
|
|
|
* |
34
|
|
|
* In accordance with Section 7(b) of the GNU Affero General Public License version 3, |
35
|
|
|
* these Appropriate Legal Notices must retain the display of the "Powered by |
36
|
|
|
* SugarCRM" logo and "Supercharged by SuiteCRM" logo. If the display of the logos is not |
37
|
|
|
* reasonably feasible for technical reasons, the Appropriate Legal Notices must |
38
|
|
|
* display the words "Powered by SugarCRM" and "Supercharged by SuiteCRM". |
39
|
|
|
********************************************************************************/ |
40
|
|
|
|
41
|
|
|
/********************************************************************************* |
42
|
|
|
|
43
|
|
|
* Description: TODO: To be written. |
44
|
|
|
* Portions created by SugarCRM are Copyright (C) SugarCRM, Inc. |
45
|
|
|
* All Rights Reserved. |
46
|
|
|
* Contributor(s): ______________________________________.. |
47
|
|
|
********************************************************************************/ |
48
|
|
|
|
49
|
|
|
|
50
|
|
|
|
51
|
|
|
|
52
|
|
|
|
53
|
|
|
class SubPanelViewNotes { |
54
|
|
|
|
55
|
|
|
var $notes_list = null; |
56
|
|
|
var $hideNewButton = false; |
57
|
|
|
var $focus; |
58
|
|
|
|
59
|
|
|
function setFocus(&$value){ |
60
|
|
|
$this->focus =(object) $value; |
61
|
|
|
} |
62
|
|
|
|
63
|
|
|
|
64
|
|
|
function setNotesList(&$value){ |
65
|
|
|
$this->notes_list =$value; |
66
|
|
|
} |
67
|
|
|
|
68
|
|
|
function setHideNewButton($value){ |
69
|
|
|
$this->hideNewButton = $value; |
70
|
|
|
} |
71
|
|
|
|
72
|
|
|
function __construct(){ |
73
|
|
|
global $theme; |
74
|
|
|
} |
75
|
|
|
|
76
|
|
|
/** |
77
|
|
|
* @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 |
78
|
|
|
*/ |
79
|
|
|
function SubPanelViewNotes(){ |
80
|
|
|
$deprecatedMessage = 'PHP4 Style Constructors are deprecated and will be remove in 7.8, please update your code'; |
81
|
|
|
if(isset($GLOBALS['log'])) { |
82
|
|
|
$GLOBALS['log']->deprecated($deprecatedMessage); |
83
|
|
|
} |
84
|
|
|
else { |
85
|
|
|
trigger_error($deprecatedMessage, E_USER_DEPRECATED); |
86
|
|
|
} |
87
|
|
|
self::__construct(); |
|
|
|
|
88
|
|
|
} |
89
|
|
|
|
90
|
|
|
|
91
|
|
|
function getHeaderText($action, $currentModule){ |
92
|
|
|
global $app_strings; |
93
|
|
|
$button = "<table cellspacing='0' cellpadding='0' border='0'><form border='0' action='index.php' method='post' name='form' id='form'>\n"; |
94
|
|
|
$button .= "<input type='hidden' name='module' value='Notes'>\n"; |
95
|
|
|
if(!$this->hideNewButton){ |
96
|
|
|
$button .= "<td><input title='".$app_strings['LBL_NEW_BUTTON_TITLE']."' class='button' onclick=\"this.form.action.value='EditView'\" type='submit' name='button' value=' ".$app_strings['LBL_NEW_BUTTON_LABEL']." '></td>\n"; |
97
|
|
|
} |
98
|
|
|
$button .= "</tr></form></table>\n"; |
99
|
|
|
return $button; |
100
|
|
|
} |
101
|
|
|
|
102
|
|
|
function ProcessSubPanelListView($xTemplatePath, &$mod_strings,$action, $curModule=''){ |
103
|
|
|
global $currentModule,$app_strings; |
104
|
|
|
if(empty($curModule)) |
105
|
|
|
$curModule = $currentModule; |
106
|
|
|
$ListView = new ListView(); |
107
|
|
|
global $current_user; |
108
|
|
|
$header_text = ''; |
109
|
|
|
if(is_admin($current_user) && $_REQUEST['module'] != 'DynamicLayout' && !empty($_SESSION['editinplace'])){ |
110
|
|
|
$header_text = " <a href='index.php?action=index&module=DynamicLayout&from_action=SubPanelView&from_module=Notes&record=". $this->focus->id."'>".SugarThemeRegistry::current()->getImage("EditLayout","border='0' align='bottom'",null,null,'.gif',$mod_strings['LBL_EDITLAYOUT'])."</a>"; |
111
|
|
|
} |
112
|
|
|
$ListView->initNewXTemplate($xTemplatePath,$mod_strings); |
113
|
|
|
$ListView->xTemplateAssign("RETURN_URL", "&return_module=".$curModule."&return_action=DetailView&return_id=".$this->focus->id); |
114
|
|
|
$ListView->xTemplateAssign("DELETE_INLINE_PNG", SugarThemeRegistry::current()->getImage('delete_inline','align="absmiddle" border="0"',null,null,'.gif',$app_strings['LNK_DELETE'])); |
115
|
|
|
$ListView->xTemplateAssign("EDIT_INLINE_PNG", SugarThemeRegistry::current()->getImage('edit_inline','align="absmiddle" border="0"',null,null,'.gif',$app_strings['LNK_EDIT'])); |
116
|
|
|
$ListView->xTemplateAssign("RECORD_ID", $this->focus->id); |
117
|
|
|
$ListView->setHeaderTitle($mod_strings['LBL_MODULE_NAME']. $header_text); |
118
|
|
|
$ListView->setHeaderText($this->getHeaderText($action, $curModule)); |
119
|
|
|
$ListView->processListView($this->notes_list, "notes", "NOTE"); |
120
|
|
|
} |
121
|
|
|
|
122
|
|
|
} |
123
|
|
|
?> |
PHP Analyzer performs a side-effects analysis of your code. A side-effect is basically anything that might be visible after the scope of the method is left.
Let’s take a look at an example:
If we look at the
getEmail()
method, we can see that it has no side-effect. Whether you call this method or not, no future calls to other methods are affected by this. As such code as the following is useless:On the hand, if we look at the
setEmail()
, this method _has_ side-effects. In the following case, we could not remove the method call: