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
|
|
|
|
44
|
|
|
|
45
|
|
|
|
46
|
|
|
class SugarWidgetSubPanelTopCreateNoteButton extends SugarWidgetSubPanelTopButtonQuickCreate |
47
|
|
|
{ |
48
|
|
|
function &_get_form($defines, $additionalFormFields = null, $asUrl = false) |
49
|
|
|
{ |
50
|
|
|
global $app_strings; |
51
|
|
|
global $currentModule; |
52
|
|
|
|
53
|
|
|
$this->module="Notes"; |
54
|
|
|
$this->subpanelDiv = "history"; |
55
|
|
|
|
56
|
|
|
// Create the additional form fields with real values if they were not passed in |
57
|
|
|
if(empty($additionalFormFields) && $this->additional_form_fields) |
58
|
|
|
{ |
59
|
|
|
foreach($this->additional_form_fields as $key=>$value) |
60
|
|
|
{ |
61
|
|
|
if(!empty($defines['focus']->$value)) |
62
|
|
|
{ |
63
|
|
|
$additionalFormFields[$key] = $defines['focus']->$value; |
64
|
|
|
} |
65
|
|
|
else |
66
|
|
|
{ |
67
|
|
|
$additionalFormFields[$key] = ''; |
68
|
|
|
} |
69
|
|
|
} |
70
|
|
|
} |
71
|
|
|
|
72
|
|
|
if(!empty($this->module)) |
73
|
|
|
{ |
74
|
|
|
$defines['child_module_name'] = $this->module; |
75
|
|
|
} |
76
|
|
|
else |
77
|
|
|
{ |
78
|
|
|
$defines['child_module_name'] = $defines['module']; |
79
|
|
|
} |
80
|
|
|
|
81
|
|
|
if(!empty($this->subpanelDiv)) |
82
|
|
|
{ |
83
|
|
|
$defines['subpanelDiv'] = $this->subpanelDiv; |
84
|
|
|
} |
85
|
|
|
|
86
|
|
|
$defines['parent_bean_name'] = get_class( $defines['focus']); |
87
|
|
|
|
88
|
|
|
$form = 'form' . $defines['child_module_name']; |
89
|
|
|
$button = '<form onsubmit="return SUGAR.subpanelUtils.sendAndRetrieve(this.id, \'subpanel_' . strtolower($defines['subpanelDiv']) . '\', \'' . addslashes($app_strings['LBL_LOADING']) . '\');" action="index.php" method="post" name="form" id="form' . $form . "\">\n"; |
90
|
|
|
|
91
|
|
|
//module_button is used to override the value of module name |
92
|
|
|
$button .= "<input type='hidden' name='target_module' value='".$defines['child_module_name']."'>\n"; |
93
|
|
|
$button .= "<input type='hidden' name='".strtolower($defines['parent_bean_name'])."_id' value='".$defines['focus']->id."'>\n"; |
94
|
|
|
|
95
|
|
|
if(isset($defines['focus']->name)) |
96
|
|
|
{ |
97
|
|
|
$button .= "<input type='hidden' name='".strtolower($defines['parent_bean_name'])."_name' value='".$defines['focus']->name."'>"; |
98
|
|
|
} |
99
|
|
|
|
100
|
|
|
$button .= '<input type="hidden" name="to_pdf" value="true" />'; |
101
|
|
|
$button .= '<input type="hidden" name="tpl" value="QuickCreate.tpl" />'; |
102
|
|
|
$button .= '<input type="hidden" name="return_module" value="' . $currentModule . "\" />\n"; |
103
|
|
|
$button .= '<input type="hidden" name="return_action" value="' . $defines['action'] . "\" />\n"; |
104
|
|
|
$button .= '<input type="hidden" name="return_id" value="' . $defines['focus']->id . "\" />\n"; |
105
|
|
|
$button .= '<input type="hidden" name="record" value="" />'; |
106
|
|
|
|
107
|
|
|
// TODO: move this out and get $additionalFormFields working properly |
108
|
|
|
if(empty($additionalFormFields['parent_type'])) |
109
|
|
|
{ |
110
|
|
|
if($defines['focus']->object_name=='Contact') { |
111
|
|
|
$additionalFormFields['parent_type'] = 'Accounts'; |
112
|
|
|
} |
113
|
|
|
else { |
114
|
|
|
$additionalFormFields['parent_type'] = $defines['focus']->module_dir; |
115
|
|
|
} |
116
|
|
|
} |
117
|
|
|
if(empty($additionalFormFields['parent_name'])) |
118
|
|
|
{ |
119
|
|
|
if($defines['focus']->object_name=='Contact') { |
120
|
|
|
$additionalFormFields['parent_name'] = $defines['focus']->account_name; |
121
|
|
|
$additionalFormFields['account_name'] = $defines['focus']->account_name; |
122
|
|
|
} |
123
|
|
|
else { |
124
|
|
|
$additionalFormFields['parent_name'] = $defines['focus']->name; |
125
|
|
|
} |
126
|
|
|
} |
127
|
|
|
if(empty($additionalFormFields['parent_id'])) |
128
|
|
|
{ |
129
|
|
|
if($defines['focus']->object_name=='Contact') { |
130
|
|
|
$additionalFormFields['parent_id'] = $defines['focus']->account_id; |
131
|
|
|
$additionalFormFields['account_id'] = $defines['focus']->account_id; |
132
|
|
|
} |
133
|
|
|
else { |
134
|
|
|
$additionalFormFields['parent_id'] = $defines['focus']->id; |
135
|
|
|
} |
136
|
|
|
} |
137
|
|
|
|
138
|
|
|
$button .= '<input type="hidden" name="action" value="SubpanelCreates" />' . "\n"; |
139
|
|
|
$button .= '<input type="hidden" name="module" value="Home" />' . "\n"; |
140
|
|
|
$button .= '<input type="hidden" name="target_action" value="QuickCreate" />' . "\n"; |
141
|
|
|
|
142
|
|
|
// fill in additional form fields for all but action |
143
|
|
|
foreach($additionalFormFields as $key => $value) |
144
|
|
|
{ |
145
|
|
|
if($key != 'action') |
146
|
|
|
{ |
147
|
|
|
$button .= '<input type="hidden" name="' . $key . '" value="' . $value . '" />' . "\n"; |
148
|
|
|
} |
149
|
|
|
} |
150
|
|
|
|
151
|
|
|
return $button; |
152
|
|
|
} |
153
|
|
|
|
154
|
|
|
|
155
|
|
|
function display($defines, $additionalFormFields = null, $nonbutton = false) |
156
|
|
|
{ |
157
|
|
|
$focus = new Note; |
158
|
|
|
if ( !$focus->ACLAccess('EditView') ) { |
159
|
|
|
return ''; |
160
|
|
|
} |
161
|
|
|
|
162
|
|
|
return parent::display($defines, $additionalFormFields); |
163
|
|
|
} |
164
|
|
|
} |
165
|
|
|
?> |
166
|
|
|
|