Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html /
bdc.bdcloud.fr /
core /
triggers /
Delete
Unzip
Name
Size
Permission
Date
Action
README
639
B
-rwxr-x---
2023-04-04 15:50
README-FR
757
B
-rwxr-x---
2023-04-04 15:50
dolibarrtriggers.class.php
3.44
KB
-rwxr-x---
2023-04-04 15:50
interface_20_all_Logevents.class.php
7.76
KB
-rwxr-x---
2023-04-04 15:50
interface_20_modWorkflow_WorkflowManager.class.php
22.41
KB
-rwxr-x---
2023-04-04 15:50
interface_50_modAgenda_ActionsAuto.class.php
49.44
KB
-rwxr-x---
2023-04-04 15:50
interface_50_modBlockedlog_ActionsBlockedLog.class.php
5.96
KB
-rwxr-x---
2023-04-04 15:50
interface_50_modEventOrganization_EventOrganization.class.php
4.85
KB
-rwxr-x---
2023-04-04 15:50
interface_50_modLdap_Ldapsynchro.class.php
28.46
KB
-rwxr-x---
2023-04-04 15:50
interface_50_modMailmanspip_Mailmanspipsynchro.class.php
5.64
KB
-rwxr-x---
2023-04-04 15:50
interface_50_modNotification_Notification.class.php
5.78
KB
-rwxr-x---
2023-04-04 15:50
interface_80_modStripe_Stripe.class.php
10.38
KB
-rwxr-x---
2023-04-04 15:50
interface_90_modSociete_ContactRoles.class.php
4.31
KB
-rwxr-x---
2023-04-04 15:50
interface_95_modWebhook_WebhookTriggers.class.php
4.12
KB
-rwxr-x---
2023-04-04 15:50
interface_95_modZapier_ZapierTriggers.class.php
16.64
KB
-rwxr-x---
2023-04-04 15:50
Save
Rename
<?php /* * Copyright (C) 2005-2017 Laurent Destailleur <eldy@users.sourceforge.net> * Copyright (C) 2009-2017 Regis Houssin <regis.houssin@inodbox.com> * Copyright (C) 2011-2014 Juanjo Menent <jmenent@2byte.es> * Copyright (C) 2013 Cedric GROSS <c.gross@kreiz-it.fr> * Copyright (C) 2014 Marcos GarcĂa <marcosgdf@gmail.com> * Copyright (C) 2015 Bahfir Abbes <bafbes@gmail.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/triggers/interface_90_modSociete_ContactRoles.class.php * \ingroup agenda * \brief Trigger file for company - contactroles */ require_once DOL_DOCUMENT_ROOT.'/core/triggers/dolibarrtriggers.class.php'; /** * Class of triggered functions for agenda module */ class InterfaceContactRoles extends DolibarrTriggers { /** * Constructor * * @param DoliDB $db Database handler */ public function __construct($db) { $this->db = $db; $this->name = preg_replace('/^Interface/i', '', get_class($this)); $this->family = "agenda"; $this->description = "Triggers of this module auto link contact to company."; // 'development', 'experimental', 'dolibarr' or version $this->version = self::VERSION_DOLIBARR; $this->picto = 'company'; } /** * Function called when a Dolibarrr business event is done. * All functions "runTrigger" are triggered if file is inside directory htdocs/core/triggers or htdocs/module/code/triggers (and declared) * * Following properties may be set before calling trigger. The may be completed by this trigger to be used for writing the event into database: * $object->socid or $object->fk_soc(id of thirdparty) * $object->element (element type of object) * * @param string $action Event action code * @param Object $object Object * @param User $user Object user * @param Translate $langs Object langs * @param conf $conf Object conf * @return int <0 if KO, 0 if no triggered ran, >0 if OK */ public function runTrigger($action, $object, User $user, Translate $langs, Conf $conf) { if ($action === 'PROPAL_CREATE' || $action === 'ORDER_CREATE' || $action === 'BILL_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') { dol_syslog("Trigger '".$this->name."' for action '".$action."' launched by ".__FILE__.". id=".$object->id); $socid = (property_exists($object, 'socid') ? $object->socid : $object->fk_soc); if (!empty($socid) && $socid > 0) { require_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php'; $contactdefault = new Contact($this->db); $contactdefault->socid = $socid; $TContact = array(); if (method_exists($contactdefault, 'getContactRoles')) { // For backward compatibility $TContact = $contactdefault->getContactRoles($object->element); } if (is_array($TContact) && !empty($TContact)) { $TContactAlreadyLinked = array(); if ($object->id > 0) { $TContactAlreadyLinked = array_merge($object->liste_contact(-1, 'external'), $object->liste_contact(-1, 'internal')); } foreach ($TContact as $i => $infos) { foreach ($TContactAlreadyLinked as $contactData) { if ($contactData['id'] == $infos['fk_socpeople'] && $contactData['fk_c_type_contact'] == $infos['type_contact']) { unset($TContact[$i]); } } } $nb = 0; foreach ($TContact as $infos) { $res = $object->add_contact($infos['fk_socpeople'], $infos['type_contact']); if ($res > 0) { $nb++; } } if ($nb > 0) { setEventMessages($langs->trans('ContactAddedAutomatically', $nb), null, 'mesgs'); } } } } return 0; } }