26require
'../main.inc.php';
27require_once DOL_DOCUMENT_ROOT.
'/contact/class/contact.class.php';
28require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formcompany.class.php';
29require_once DOL_DOCUMENT_ROOT.
'/bookcal/class/availabilities.class.php';
30require_once DOL_DOCUMENT_ROOT.
'/bookcal/lib/bookcal_availabilities.lib.php';
33$langs->loadLangs(array(
"agenda",
"companies",
"other",
"mails"));
37$lineid =
GETPOST(
'lineid',
'int');
38$socid =
GETPOST(
'socid',
'int');
39$action =
GETPOST(
'action',
'aZ09');
44$diroutputmassaction = $conf->bookcal->dir_output.
'/temp/massgeneration/'.$user->id;
45$hookmanager->initHooks(array(
'availabilitiescontact',
'globalcard'));
47$extrafields->fetch_name_optionals_label($object->table_element);
50include DOL_DOCUMENT_ROOT.
'/core/actions_fetchobject.inc.php';
54$enablepermissioncheck = 0;
55if ($enablepermissioncheck) {
56 $permissiontoread = $user->hasRight(
'bookcal',
'availabilities',
'read');
57 $permission = $user->hasRight(
'bookcal',
'availabilities',
'write');
59 $permissiontoread = 1;
76if ($action ==
'addcontact' && $permission) {
79 $result = $object->add_contact($contactid, $typeid,
GETPOST(
"source",
'aZ09'));
82 header(
"Location: ".$_SERVER[
'PHP_SELF'].
"?id=".$object->id);
85 if ($object->error ==
'DB_ERROR_RECORD_ALREADY_EXISTS') {
86 $langs->load(
"errors");
87 setEventMessages($langs->trans(
"ErrorThisContactIsAlreadyDefinedAsThisType"),
null,
'errors');
92} elseif ($action ==
'swapstatut' && $permission) {
94 $result = $object->swapContactStatus(
GETPOST(
'ligne',
'int'));
95} elseif ($action ==
'deletecontact' && $permission) {
97 $result = $object->delete_contact($lineid);
100 header(
"Location: ".$_SERVER[
'PHP_SELF'].
"?id=".$object->id);
112$title = $langs->trans(
'Availabilities').
" - ".$langs->trans(
'ContactsAddresses');
117$form =
new Form($db);
119$contactstatic =
new Contact($db);
120$userstatic =
new User($db);
135 print
dol_get_fiche_head($head,
'contact', $langs->trans(
"Availabilities"), -1, $object->picto);
137 $linkback =
'<a href="'.dol_buildpath(
'/bookcal/availabilities_list.php', 1).
'?restore_lastsearch_values=1'.(!empty($socid) ?
'&socid='.$socid :
'').
'">'.$langs->trans(
"BackToList").
'</a>';
139 $morehtmlref =
'<div class="refidno">';
177 $morehtmlref .=
'</div>';
179 dol_banner_tab($object,
'ref', $linkback, 1,
'ref',
'ref', $morehtmlref,
'', 0,
'',
'', 1);
186 $dirtpls = array_merge($conf->modules_parts[
'tpl'], array(
'/core/tpl'));
187 foreach ($dirtpls as $reldir) {
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
availabilitiesPrepareHead($object)
Prepare array of tabs for Availabilities.
Class for Availabilities.
Class to manage Dolibarr users.
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='', $dragdropfile=0)
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.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.