salesagility_SuiteCRM/include/generic/SugarWidgets/SugarWidgetSubPanelTopSelec...

185 lines
8.0 KiB
PHP
Executable File

<?php
if (!defined('sugarEntry') || !sugarEntry) {
die('Not A Valid Entry Point');
}
/**
*
* SugarCRM Community Edition is a customer relationship management program developed by
* SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
*
* SuiteCRM is an extension to SugarCRM Community Edition developed by SalesAgility Ltd.
* Copyright (C) 2011 - 2018 SalesAgility Ltd.
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License version 3 as published by the
* Free Software Foundation with the addition of the following permission added
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
* IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
* details.
*
* You should have received a copy of the GNU Affero General Public License along with
* this program; if not, see http://www.gnu.org/licenses or write to the Free
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301 USA.
*
* You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
* SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
*
* The interactive user interfaces in modified source and object code versions
* of this program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU Affero General Public License version 3.
*
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
* these Appropriate Legal Notices must retain the display of the "Powered by
* SugarCRM" logo and "Supercharged by SuiteCRM" logo. If the display of the logos is not
* reasonably feasible for technical reasons, the Appropriate Legal Notices must
* display the words "Powered by SugarCRM" and "Supercharged by SuiteCRM".
*/
#[\AllowDynamicProperties]
class SugarWidgetSubPanelTopSelectUsersButton extends SugarWidgetSubPanelTopSelectButton
{
//button_properties is a collection of properties associated with the widget_class definition. layoutmanager
public function __construct($button_properties=array())
{
$this->button_properties=$button_properties;
}
public function getDisplayName()
{
return $GLOBALS['app_strings']['LBL_SELECT_USER_BUTTON_LABEL'];
}
//widget_data is the collection of attributes associated with the button in the layout_defs file.
public function display($widget_data, $additionalFormFields = null, $nonbutton = false)
{
global $app_strings;
$initial_filter = '';
$this->title = $app_strings['LBL_SELECT_USER_BUTTON_TITLE'];
//$this->accesskey = $app_strings['LBL_SELECT_USER_BUTTON_KEY'];
$this->value = $this->getDisplayName();
$this->module_name = 'Users';
if (is_array($this->button_properties)) {
if (isset($this->button_properties['title'])) {
$this->title = $app_strings[$this->button_properties['title']];
}
if (isset($this->button_properties['accesskey'])) {
//$this->accesskey = $app_strings[$this->button_properties['accesskey']];
}
if (isset($this->button_properties['form_value'])) {
$this->value = $app_strings[$this->button_properties['form_value']];
}
if (isset($this->button_properties['module'])) {
$this->module_name = $this->button_properties['module'];
}
}
$focus = $widget_data['focus'];
if (ACLController::moduleSupportsACL($widget_data['module']) && !ACLController::checkAccess($widget_data['module'], 'list', true)) {
$button = ' <input type="button" name="' .$this->getWidgetId() . '" id="' .$this->getWidgetId() . '" class="button"' . "\"\n"
. ' title="' . $this->title . '"'
. ' value="' . $this->value . "\"\n"
.' disabled />';
return $button;
}
//refresh the whole page after end of action?
$refresh_page = 0;
if (!empty($widget_data['subpanel_definition']->_instance_properties['refresh_page'])) {
$refresh_page = 1;
}
$subpanel_definition = $widget_data['subpanel_definition'];
$button_definition = $subpanel_definition->get_buttons();
$subpanel_name = $subpanel_definition->get_module_name();
if (empty($this->module_name)) {
$this->module_name = $subpanel_name;
}
if ($subpanel_name == 'Project') {
$link_field_name = 'project_users_1';
} elseif ($subpanel_name == 'AM_ProjectTemplates') {
$link_field_name = 'am_projecttemplates_users_1';
} else {
$link_field_name = $subpanel_definition->get_data_source_name(true);
}
$popup_mode='Single';
if (isset($widget_data['mode'])) {
$popup_mode=$widget_data['mode'];
}
if (isset($widget_data['initial_filter_fields'])) {
if (is_array($widget_data['initial_filter_fields'])) {
foreach ($widget_data['initial_filter_fields'] as $value=>$alias) {
if (isset($focus->$value) && !empty($focus->$value)) {
$initial_filter.="&".$alias . '='.urlencode($focus->$value);
}
}
}
}
if (!empty($widget_data['filter_out_is_admin'])) {
$initial_filter.="&is_admin_advanced=0";
}
$create="true";
if (isset($widget_data['create'])) {
$create=$widget_data['create'];
}
$return_module = $_REQUEST['module'];
$return_action = 'SubPanelViewer';
$return_id = $_REQUEST['record'];
//field_to_name_array
$fton_array= array('id' => 'subpanel_id');
if (isset($widget_data['field_to_name_array']) && is_array($widget_data['field_to_name_array'])) {
$fton_array=array_merge($fton_array, $widget_data['field_to_name_array']);
}
$return_url = "index.php?module=$return_module&action=$return_action&subpanel=$subpanel_name&record=$return_id&sugar_body_only=1";
$popup_request_data = array(
'call_back_function' => 'set_return_and_save_background',
'form_name' => 'DetailView',
'field_to_name_array' => $fton_array,
'passthru_data' => array(
'child_field' => $this->module_name,
'return_url' => urlencode($return_url),
'link_field_name' => $link_field_name,
'module_name' => $this->module_name,
'refresh_page' => 1,
),
);
if (is_array($this->button_properties) && !empty($this->button_properties['add_to_passthru_data'])) {
$popup_request_data['passthru_data']= array_merge($popup_request_data['passthru_data'], $this->button_properties['add_to_passthru_data']);
}
if (is_array($this->button_properties) && !empty($this->button_properties['add_to_passthru_data']['return_type'])) {
if ($this->button_properties['add_to_passthru_data']['return_type']=='report') {
$initial_filter = "&module_name=". urlencode($widget_data['module']);
}
}
$json_encoded_php_array = $this->_create_json_encoded_popup_request($popup_request_data);
return '<form action="index.php">' . "\n"
. ' <input type="button" name="' .$this->getWidgetId() . '" id="' .$this->getWidgetId() . '" class="button"' . "\"\n"
. ' title="' . $this->title . '"'
. ' value="' . $this->value . "\"\n"
. " onclick='open_popup(\"$this->module_name\",600,400,\"$initial_filter\",true,true,$json_encoded_php_array,\"$popup_mode\",$create);' /></form>\n";
}
}