]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/generic/SugarWidgets/SugarWidgetSubPanelTopSelectContactsButton.php
Release 6.2.0
[Github/sugarcrm.git] / include / generic / SugarWidgets / SugarWidgetSubPanelTopSelectContactsButton.php
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-2011 SugarCRM Inc.
6  * 
7  * This program is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU Affero General Public License version 3 as published by the
9  * Free Software Foundation with the addition of the following permission added
10  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
11  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
12  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
13  * 
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
17  * details.
18  * 
19  * You should have received a copy of the GNU Affero General Public License along with
20  * this program; if not, see http://www.gnu.org/licenses or write to the Free
21  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22  * 02110-1301 USA.
23  * 
24  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
25  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
26  * 
27  * The interactive user interfaces in modified source and object code versions
28  * of this program must display Appropriate Legal Notices, as required under
29  * Section 5 of the GNU Affero General Public License version 3.
30  * 
31  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
32  * these Appropriate Legal Notices must retain the display of the "Powered by
33  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
34  * technical reasons, the Appropriate Legal Notices must display the words
35  * "Powered by SugarCRM".
36  ********************************************************************************/
37
38
39
40
41 require_once('include/generic/SugarWidgets/SugarWidgetSubPanelTopSelectButton.php');
42
43 class SugarWidgetSubPanelTopSelectContactsButton extends SugarWidgetSubPanelTopSelectButton
44 {
45         //button_properties is a collection of properties associated with the widget_class definition. layoutmanager
46         function SugarWidgetSubPanelTopSelectContactsButton($button_properties=array())
47         {
48                 $this->button_properties=$button_properties;
49         }
50
51         //widget_data is the collection of attributes assoicated with the button in the layout_defs file.
52         function display(&$widget_data)
53         {
54                 global $app_strings;
55                 $initial_filter = '';
56                 
57                 $this->title = $app_strings['LBL_SELECT_CONTACT_BUTTON_TITLE'];
58                 $this->accesskey = $app_strings['LBL_SELECT_CONTACT_BUTTON_KEY'];
59                 $this->value = $app_strings['LBL_SELECT_CONTACT_BUTTON_LABEL'];
60                 
61                 $this->module_name = 'Contacts';                
62
63                 if (is_array($this->button_properties)) {
64                         if( isset($this->button_properties['title'])) {
65                                 $this->title = $app_strings[$this->button_properties['title']];
66                         }
67                         if( isset($this->button_properties['accesskey'])) {
68                                 $this->accesskey = $app_strings[$this->button_properties['accesskey']];
69                         }
70                         if( isset($this->button_properties['form_value'])) {
71                                 $this->value = $app_strings[$this->button_properties['form_value']];
72                         }
73                         if( isset($this->button_properties['module'])) {
74                                 $this->module_name = $this->button_properties['module'];
75                         }
76                 }
77                 
78                 $focus = $widget_data['focus'];
79                 if(ACLController::moduleSupportsACL($widget_data['module']) && !ACLController::checkAccess($widget_data['module'], 'list', true)){
80                         $button = ' <input type="button" name="' .$this->getWidgetId() . '_select_button" id="' .$this->getWidgetId() . '_select_button" class="button"' . "\"\n"
81                         . ' title="' . $this->title . '"'
82                         . ' value="' . $this->value . "\"\n"
83                         .' disabled />';
84                         return $button;
85                 }
86
87                 //refresh the whole page after end of action?
88                 $refresh_page = 0;
89                 if(!empty($widget_data['subpanel_definition']->_instance_properties['refresh_page'])){
90                         $refresh_page = 1;
91                 }
92
93                 $subpanel_definition = $widget_data['subpanel_definition'];
94                                 
95                 $button_definition = $subpanel_definition->get_buttons();
96                 $subpanel_name = $subpanel_definition->get_module_name();
97                 if (empty($this->module_name)) {
98                         $this->module_name = $subpanel_name;
99                 }
100                 
101                 if ($subpanel_name == 'Project'){
102                         $link_field_name = 'contact_resources';
103                 }
104                 else{
105                         $link_field_name = $subpanel_definition->get_data_source_name(true);
106                 }
107                                 
108                 $popup_mode='Single';
109                 if(isset($widget_data['mode'])){
110                         $popup_mode=$widget_data['mode'];
111                 }
112                 if(isset($widget_data['initial_filter_fields'])){
113                         if (is_array($widget_data['initial_filter_fields'])) {
114                                 foreach ($widget_data['initial_filter_fields'] as $value=>$alias) {
115                                         if (isset($focus->$value) and !empty($focus->$value)) {
116                                                 $initial_filter.="&".$alias . '='.urlencode($focus->$value);
117                                         }
118                                 }
119                         }
120                 }
121                 $create="true";
122                 if(isset($widget_data['create'])){
123                         $create=$widget_data['create'];
124                 }
125                 $return_module = $_REQUEST['module'];
126                 $return_action = 'SubPanelViewer';
127                 $return_id = $_REQUEST['record']; 
128                 
129                 //field_to_name_array
130                 $fton_array= array('id' => 'subpanel_id');
131                 if(isset($widget_data['field_to_name_array']) && is_array($widget_data['field_to_name_array'])){
132                         $fton_array=array_merge($fton_array,$widget_data['field_to_name_array']);
133                 }
134                         
135                 $return_url = "index.php?module=$return_module&action=$return_action&subpanel=$subpanel_name&record=$return_id&sugar_body_only=1";
136
137                 $popup_request_data = array(
138                         'call_back_function' => 'set_return_and_save_background',
139                         'form_name' => 'DetailView',
140                         'field_to_name_array' => $fton_array,
141                         'passthru_data' => array(
142                                 'child_field' => $this->module_name,
143                                 'return_url' => urlencode($return_url),
144                                 'link_field_name' => $link_field_name,
145                                 'module_name' => $this->module_name,
146                                 'refresh_page'=>true,
147                         ),
148                 );
149                 
150                 if (is_array($this->button_properties) && !empty($this->button_properties['add_to_passthru_data'])) {
151                         $popup_request_data['passthru_data']= array_merge($popup_request_data['passthru_data'],$this->button_properties['add_to_passthru_data']);
152                 }               
153                 
154                 if (is_array($this->button_properties) && !empty($this->button_properties['add_to_passthru_data']['return_type'])) {
155                         
156                         if ($this->button_properties['add_to_passthru_data']['return_type']=='report') {
157                                 $initial_filter = "&module_name=". urlencode($widget_data['module']);
158                         }
159                         if ($this->button_properties['add_to_passthru_data']['return_type']=='addtoprospectlist') {
160                                 if (isset($widget_data['query'])) {
161                                         $popup_request_data['passthru_data']['query']=$widget_data['query'];
162                                 }
163                         }
164                 }
165                 $json_encoded_php_array = $this->_create_json_encoded_popup_request($popup_request_data);
166                         
167                 return '<form action="index.php">' . "\n"
168                         . ' <input type="button" name="' .$this->getWidgetId() . '_select_button" id="' .$this->getWidgetId() . '_select_button" class="button"' . "\"\n"
169                                 . ' title="' . $this->title . '"'
170                         . ' accesskey="' . $this->accesskey . '"'
171                         . ' value="' . $this->value . "\"\n"
172                         . " onclick='open_popup(\"$this->module_name\",600,400,\"$initial_filter\",true,true,$json_encoded_php_array,\"$popup_mode\",$create);' /></form>\n";
173         }
174 }
175 ?>