0
0
mirror of https://github.com/salesagility/SuiteCRM.git synced 2024-12-22 12:28:31 +00:00
salesagility_SuiteCRM/include/generic/SugarWidgets/SugarWidgetField.php
2023-07-18 15:53:09 +01:00

226 lines
7.6 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 SugarWidgetField extends SugarWidget
{
public function __construct(&$layout_manager)
{
parent::__construct($layout_manager);
}
public function display($layout_def)
{
$context = $this->layout_manager->getAttribute('context');
$func_name = 'display'.$context;
if (!empty($context) && method_exists($this, $func_name)) {
return $this-> $func_name($layout_def);
} else {
return 'display not found:'.$func_name;
}
}
public function _get_column_alias($layout_def)
{
$alias_arr = array();
if (!empty($layout_def['name']) && $layout_def['name'] == 'count') {
return 'count';
}
if (!empty($layout_def['table_alias'])) {
array_push($alias_arr, $layout_def['table_alias']);
}
if (!empty($layout_def['name'])) {
array_push($alias_arr, $layout_def['name']);
}
return $this->getTruncatedColumnAlias(implode("_", $alias_arr));
}
public function & displayDetailLabel(& $layout_def)
{
return '';
}
public function & displayDetail($layout_def)
{
$layout_def = '';
return $layout_def;
}
public function displayHeaderCellPlain($layout_def)
{
if (!empty($layout_def['label'])) {
return $layout_def['label'];
}
if (!empty($layout_def['vname'])) {
return translate($layout_def['vname'], $this->layout_manager->getAttribute('module_name'));
}
return '';
}
public function displayHeaderCell($layout_def)
{
$module_name = $this->layout_manager->getAttribute('module_name');
$this->local_current_module = $_REQUEST['module'];
$this->is_dynamic = true;
// don't show sort links if name isn't defined
if (empty($layout_def['name']) || (isset($layout_def['sortable']) && !$layout_def['sortable'])) {
return $this->displayHeaderCellPlain($layout_def);
}
$header_cell_text = $this->displayHeaderCellPlain($layout_def);
$subpanel_module = $layout_def['subpanel_module'];
$html_var = $subpanel_module . "_CELL";
if (empty($this->base_URL)) {
$objListView = new ListView();
$this->base_URL = $objListView -> getBaseURL($html_var);
$split_url = explode('&to_pdf=true&action=SubPanelViewer&subpanel=', $this->base_URL);
$this->base_URL = $split_url[0];
$this->base_URL .= '&inline=true&to_pdf=true&action=SubPanelViewer&subpanel=';
}
$sort_by_name = $layout_def['name'];
if (isset($layout_def['sort_by'])) {
$sort_by_name = $layout_def['sort_by'];
}
$objListView = new ListView();
$sort_by = $objListView->getSessionVariableName($html_var, "ORDER_BY").'='.$sort_by_name;
$start = (empty($layout_def['start_link_wrapper'])) ? '' : $layout_def['start_link_wrapper'];
$end = (empty($layout_def['end_link_wrapper'])) ? '' : $layout_def['end_link_wrapper'];
$header_cell = "<a class=\"listViewThLinkS1\" href=\"".$start.$this->base_URL.$subpanel_module.'&'.$sort_by.$end."\">";
$header_cell .= $header_cell_text;
$imgArrow = '';
if (isset($layout_def['sort'])) {
$imgArrow = $layout_def['sort'];
}
$arrow_start = $objListView->getArrowUpDownStart($imgArrow);
$arrow_end = $objListView->getArrowUpDownEnd($imgArrow);
$header_cell .= " ".$arrow_start.$arrow_end."</a>";
return $header_cell;
}
public function displayList(&$layout_def)
{
return $this->displayListPlain($layout_def);
}
public function displayListPlain($layout_def)
{
$value= $this->_get_list_value($layout_def);
if (isset($layout_def['widget_type']) && $layout_def['widget_type'] =='checkbox') {
if ($value != '' && ($value == 'on' || (int)$value == 1 || $value == 'yes')) {
return "<input name='checkbox_display' class='checkbox' type='checkbox' disabled='true' checked>";
}
return "<input name='checkbox_display' class='checkbox' type='checkbox' disabled='true'>";
}
return $value;
}
public function _get_list_value(& $layout_def)
{
$key = '';
if (isset($layout_def['varname'])) {
$key = strtoupper($layout_def['varname']);
} else {
$key = strtoupper($this->_get_column_alias($layout_def));
}
if (isset($layout_def['fields'][$key])) {
return $layout_def['fields'][$key];
}
return '';
}
public function & displayEditLabel($layout_def)
{
return '';
}
public function & displayEdit($layout_def)
{
return '';
}
public function & displaySearchLabel($layout_def)
{
return '';
}
public function & displaySearch($layout_def)
{
return '';
}
public function displayInput($layout_def)
{
return ' -- Not Implemented --';
}
public function getVardef($layout_def)
{
if (!empty($layout_def['column_key']) && !empty($this->layout_manager->defs['reporter'])) {
$myName = $layout_def['column_key'];
$vardef = $this->layout_manager->defs['reporter']->all_fields[$myName];
}
if (!isset($vardef)) {
// No vardef, return an empty array
return array();
} else {
return $vardef;
}
}
}