mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-05 17:18:13 +01:00
# Qual: Fix phan notices Fix phan notices in several classes that have UnknownObjectMethod calls and classes that had notices in relation with these classes
127 lines
3.9 KiB
PHP
127 lines
3.9 KiB
PHP
<?php
|
|
/* Copyright (C) 2012 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
* Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/**
|
|
* \file htdocs/core/class/html.formsocialcontrib.class.php
|
|
* \ingroup core
|
|
* \brief File of class with all html predefined components
|
|
*/
|
|
|
|
|
|
/**
|
|
* Class to manage generation of HTML components for social contributions management
|
|
*/
|
|
class FormSocialContrib
|
|
{
|
|
/**
|
|
* @var DoliDB Database handler.
|
|
*/
|
|
public $db;
|
|
|
|
/**
|
|
* @var string Error code (or message)
|
|
*/
|
|
public $error = '';
|
|
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* @param DoliDB $db Database handler
|
|
*/
|
|
public function __construct($db)
|
|
{
|
|
$this->db = $db;
|
|
}
|
|
|
|
// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
|
|
/**
|
|
* Return list of social contributions.
|
|
* Use mysoc->country_id or mysoc->country_code so they must be defined.
|
|
*
|
|
* @param int $selected Preselected type
|
|
* @param string $htmlname Name of field in form
|
|
* @param int<0,1> $useempty Set to 1 if we want an empty value
|
|
* @param int $maxlen Max length of text in combo box
|
|
* @param int<0,1> $help Add or not the admin help picto
|
|
* @param string $morecss Add more CSS on select
|
|
* @param int<0,1> $noerrorifempty No print error if list is empty for the country
|
|
* @return void
|
|
*/
|
|
public function select_type_socialcontrib($selected = 0, $htmlname = 'actioncode', $useempty = 0, $maxlen = 40, $help = 1, $morecss = 'minwidth300', $noerrorifempty = 0)
|
|
{
|
|
// phpcs:enable
|
|
global $conf, $db, $langs, $user, $mysoc;
|
|
|
|
if (empty($mysoc->country_id) && empty($mysoc->country_code)) {
|
|
print $langs->trans("ErrorSetupOfCountryMustBeDone");
|
|
return;
|
|
}
|
|
|
|
if (!empty($mysoc->country_id)) {
|
|
$sql = "SELECT c.id, c.libelle as type";
|
|
$sql .= " FROM ".$this->db->prefix()."c_chargesociales as c";
|
|
$sql .= " WHERE c.active = 1";
|
|
$sql .= " AND c.fk_pays = ".((int) $mysoc->country_id);
|
|
$sql .= " ORDER BY c.libelle ASC";
|
|
} else {
|
|
$sql = "SELECT c.id, c.libelle as type";
|
|
$sql .= " FROM ".$this->db->prefix()."c_chargesociales as c, ".$this->db->prefix()."c_country as co";
|
|
$sql .= " WHERE c.active = 1 AND c.fk_pays = co.rowid";
|
|
$sql .= " AND co.code = '".$this->db->escape($mysoc->country_code)."'";
|
|
$sql .= " ORDER BY c.libelle ASC";
|
|
}
|
|
|
|
dol_syslog("Form::select_type_socialcontrib", LOG_DEBUG);
|
|
$resql = $this->db->query($sql);
|
|
if ($resql) {
|
|
$num = $this->db->num_rows($resql);
|
|
if ($num) {
|
|
print '<select class="'.($morecss ? $morecss : '').'" id="'.$htmlname.'" name="'.$htmlname.'">';
|
|
$i = 0;
|
|
|
|
if ($useempty) {
|
|
print '<option value="0"> </option>';
|
|
}
|
|
while ($i < $num) {
|
|
$obj = $this->db->fetch_object($resql);
|
|
print '<option value="'.$obj->id.'"';
|
|
if ($obj->id == $selected) {
|
|
print ' selected';
|
|
}
|
|
print '>'.dol_trunc($obj->type, $maxlen);
|
|
$i++;
|
|
}
|
|
print '</select>';
|
|
if ($user->admin && $help) {
|
|
print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"), 1);
|
|
}
|
|
if (!empty($conf->use_javascript_ajax)) {
|
|
print ajax_combobox($htmlname);
|
|
}
|
|
} else {
|
|
if (empty($noerrorifempty)) {
|
|
print $langs->trans("ErrorNoSocialContributionForSellerCountry", $mysoc->country_code);
|
|
}
|
|
}
|
|
} else {
|
|
dol_print_error($this->db);
|
|
}
|
|
}
|
|
}
|