25 require
'../main.inc.php';
26 require_once DOL_DOCUMENT_ROOT.
'/contact/class/contact.class.php';
27 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formcompany.class.php';
28 require_once DOL_DOCUMENT_ROOT.
'/webhook/class/target.class.php';
29 require_once DOL_DOCUMENT_ROOT.
'/webhook/lib/webhook_target.lib.php';
32 $langs->loadLangs(array(
'companies',
'other',
'mails'));
36 $lineid =
GETPOST(
'lineid',
'int');
37 $socid =
GETPOST(
'socid',
'int');
38 $action =
GETPOST(
'action',
'aZ09');
43 $diroutputmassaction = $conf->webhook->dir_output.
'/temp/massgeneration/'.$user->id;
44 $hookmanager->initHooks(array(
'targetcontact',
'globalcard'));
47 $extrafields->fetch_name_optionals_label($object->table_element);
50 include DOL_DOCUMENT_ROOT.
'/core/actions_fetchobject.inc.php';
55 $enablepermissioncheck = 0;
56 if ($enablepermissioncheck) {
57 $permissiontoread = $user->rights->webhook->target->read;
58 $permission = $user->rights->webhook->target->write;
60 $permissiontoread = 1;
78 if ($action ==
'addcontact' && $permission) {
81 $result = $object->add_contact($contactid, $typeid,
GETPOST(
"source",
'aZ09'));
84 header(
"Location: ".$_SERVER[
'PHP_SELF'].
"?id=".$object->id);
87 if ($object->error ==
'DB_ERROR_RECORD_ALREADY_EXISTS') {
88 $langs->load(
"errors");
89 setEventMessages($langs->trans(
"ErrorThisContactIsAlreadyDefinedAsThisType"),
null,
'errors');
94 } elseif ($action ==
'swapstatut' && $permission) {
96 $result = $object->swapContactStatus(
GETPOST(
'ligne',
'int'));
97 } elseif ($action ==
'deletecontact' && $permission) {
99 $result = $object->delete_contact($lineid);
102 header(
"Location: ".$_SERVER[
'PHP_SELF'].
"?id=".$object->id);
114 $title = $langs->trans(
'Target').
" - ".$langs->trans(
'ContactsAddresses');
121 $contactstatic =
new Contact($db);
122 $userstatic =
new User($db);
137 print
dol_get_fiche_head($head,
'contact', $langs->trans(
"Target"), -1, $object->picto);
139 $linkback =
'<a href="'.dol_buildpath(
'/webhook/target_list.php', 1).
'?restore_lastsearch_values=1'.(!empty($socid) ?
'&socid='.$socid :
'').
'">'.$langs->trans(
"BackToList").
'</a>';
141 $morehtmlref =
'<div class="refidno">';
179 $morehtmlref .=
'</div>';
181 dol_banner_tab($object,
'ref', $linkback, 1,
'ref',
'ref', $morehtmlref,
'', 0,
'',
'', 1);
188 $dirtpls = array_merge($conf->modules_parts[
'tpl'], array(
'/core/tpl'));
189 foreach ($dirtpls as $reldir) {
if(GETPOST('button_removefilter_x', 'alpha')||GETPOST('button_removefilter.x', 'alpha')||GETPOST('button_removefilter', 'alpha')) if(GETPOST('button_search_x', 'alpha')||GETPOST('button_search.x', 'alpha')||GETPOST('button_search', 'alpha')) if($action=="save" &&empty($cancel)) $help_url
View.
if(!defined('NOREQUIRESOC')) if(!defined('NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) llxHeader()
Empty header.
Class to manage Dolibarr users.
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
dol_banner_tab($object, $paramid, $morehtml='', $shownav=1, $fieldid='rowid', $fieldref='ref', $morehtmlref='', $moreparam='', $nodbprefix=0, $morehtmlleft='', $morehtmlstatus='', $onlybanner=0, $morehtmlright='')
Show tab footer of a card.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='')
Show tabs of a record.
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
dol_get_fiche_end($notab=0)
Return tab footer of a card.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='')
Set event messages in dol_events session object.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
isModEnabled($module)
Is Dolibarr module enabled.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.
targetPrepareHead($object)
Prepare array of tabs for Target.