Fix phpcs

This commit is contained in:
Laurent Destailleur 2020-02-17 12:40:26 +01:00
parent 504a67daee
commit 25fa83bd06

View File

@ -1,5 +1,6 @@
<?php <?php
/* Copyright (C) 2005-2017 Laurent Destailleur <eldy@users.sourceforge.net> /*
* Copyright (C) 2005-2017 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2009-2017 Regis Houssin <regis.houssin@inodbox.com> * Copyright (C) 2009-2017 Regis Houssin <regis.houssin@inodbox.com>
* Copyright (C) 2011-2014 Juanjo Menent <jmenent@2byte.es> * Copyright (C) 2011-2014 Juanjo Menent <jmenent@2byte.es>
* Copyright (C) 2013 Cedric GROSS <c.gross@kreiz-it.fr> * Copyright (C) 2013 Cedric GROSS <c.gross@kreiz-it.fr>
@ -25,25 +26,27 @@
* \ingroup agenda * \ingroup agenda
* \brief Trigger file for company - contactroles * \brief Trigger file for company - contactroles
*/ */
require_once DOL_DOCUMENT_ROOT . '/core/triggers/dolibarrtriggers.class.php';
require_once DOL_DOCUMENT_ROOT.'/core/triggers/dolibarrtriggers.class.php';
/** /**
* Class of triggered functions for agenda module * Class of triggered functions for agenda module
*/ */
class InterfaceContactRoles extends DolibarrTriggers class InterfaceContactRoles extends DolibarrTriggers
{ {
public $family = 'agenda'; public $family = 'agenda';
public $description = "Triggers of this module auto link contact to company."; public $description = "Triggers of this module auto link contact to company.";
/** /**
* Version of the trigger * Version of the trigger
*
* @var string * @var string
*/ */
public $version = self::VERSION_DOLIBARR; public $version = self::VERSION_DOLIBARR;
/** /**
*
* @var string Image of the trigger * @var string Image of the trigger
*/ */
public $picto = 'action'; public $picto = 'action';
@ -65,48 +68,44 @@ class InterfaceContactRoles extends DolibarrTriggers
*/ */
public function runTrigger($action, $object, User $user, Translate $langs, Conf $conf) public function runTrigger($action, $object, User $user, Translate $langs, Conf $conf)
{ {
if ($action === 'PROPAL_CREATE' || $action === 'ORDER_CREATE' || $action === 'BILL_CREATE' if ($action === 'PROPAL_CREATE' || $action === 'ORDER_CREATE' || $action === 'BILL_CREATE'
|| $action === 'ORDER_SUPPLIER_CREATE' || $action === 'BILL_SUPPLIER_CREATE' || $action === 'PROPOSAL_SUPPLIER_CREATE' || $action === 'ORDER_SUPPLIER_CREATE' || $action === 'BILL_SUPPLIER_CREATE' || $action === 'PROPOSAL_SUPPLIER_CREATE'
|| $action === 'CONTRACT_CREATE' || $action === 'FICHINTER_CREATE' || $action === 'PROJECT_CREATE' || $action === 'TICKET_CREATE') { || $action === 'CONTRACT_CREATE' || $action === 'FICHINTER_CREATE' || $action === 'PROJECT_CREATE' || $action === 'TICKET_CREATE') {
dol_syslog("Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id); dol_syslog("Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id);
$socid = (property_exists($object, 'socid') ? $object->socid : $object->fk_soc); $socid = (property_exists($object, 'socid') ? $object->socid : $object->fk_soc);
if (! empty($socid) && $socid > 0) { if (! empty($socid) && $socid > 0) {
require_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php'; require_once DOL_DOCUMENT_ROOT . '/contact/class/contact.class.php';
$contactdefault = new Contact($this->db); $contactdefault = new Contact($this->db);
$contactdefault->socid = $socid; $contactdefault->socid = $socid;
$TContact = $contactdefault->getContactRoles($object->element); $TContact = $contactdefault->getContactRoles($object->element);
if (is_array($TContact) && ! empty($TContact)) if (is_array($TContact) && ! empty($TContact)) {
{
$TContactAlreadyLinked = array(); $TContactAlreadyLinked = array();
if ($object->id > 0) if ($object->id > 0) {
{
/* $class = get_class($object);
$cloneFrom = new $class($this->db);
$r = $cloneFrom->fetch($object->id); */
$cloneFrom = dol_clone($object, 1); $cloneFrom = dol_clone($object, 1);
if (!empty($cloneFrom->id)) { if (! empty($cloneFrom->id)) {
$TContactAlreadyLinked = array_merge($cloneFrom->liste_contact(-1, 'external'), $cloneFrom->liste_contact(-1, 'internal')); $TContactAlreadyLinked = array_merge($cloneFrom->liste_contact(- 1, 'external'), $cloneFrom->liste_contact(- 1, 'internal'));
} }
} }
foreach($TContact as $i => $infos) { foreach ($TContact as $i => $infos) {
foreach ($TContactAlreadyLinked as $contactData) { foreach ($TContactAlreadyLinked as $contactData) {
if ($contactData['id'] == $infos['fk_socpeople'] && $contactData['fk_c_type_contact'] == $infos['type_contact']) unset($TContact[$i]); if ($contactData['id'] == $infos['fk_socpeople'] && $contactData['fk_c_type_contact'] == $infos['type_contact'])
unset($TContact[$i]);
} }
} }
$nb = 0; $nb = 0;
foreach($TContact as $infos) { foreach ($TContact as $infos) {
$res = $object->add_contact($infos['fk_socpeople'], $infos['type_contact']); $res = $object->add_contact($infos['fk_socpeople'], $infos['type_contact']);
if ($res > 0) $nb++; if ($res > 0)
$nb ++;
} }
if($nb > 0) { if ($nb > 0) {
setEventMessages($langs->trans('ContactAddedAutomatically', $nb), null, 'mesgs'); setEventMessages($langs->trans('ContactAddedAutomatically', $nb), null, 'mesgs');
} }
} }