26 require
'../main.inc.php';
27 require_once DOL_DOCUMENT_ROOT.
'/contact/class/contact.class.php';
28 require_once DOL_DOCUMENT_ROOT.
'/core/lib/company.lib.php';
29 require_once DOL_DOCUMENT_ROOT.
'/core/lib/functions2.lib.php';
35 $langs->loadLangs(array(
"bookcal@bookcal",
"other"));
40 $action =
GETPOST(
'action',
'aZ09');
41 $cancel =
GETPOST(
'cancel',
'aZ09');
42 $backtopage =
GETPOST(
'backtopage',
'alpha');
44 if (
GETPOST(
'actioncode',
'array')) {
45 $actioncode =
GETPOST(
'actioncode',
'array', 3);
46 if (!count($actioncode)) {
50 $actioncode =
GETPOST(
"actioncode",
"alpha", 3) ?
GETPOST(
"actioncode",
"alpha", 3) : (
GETPOST(
"actioncode") ==
'0' ?
'0' : (empty($conf->global->AGENDA_DEFAULT_FILTER_TYPE_FOR_OBJECT) ?
'' : $conf->global->AGENDA_DEFAULT_FILTER_TYPE_FOR_OBJECT));
53 $search_rowid =
GETPOST(
'search_rowid');
54 $search_agenda_label =
GETPOST(
'search_agenda_label');
56 $limit =
GETPOST(
'limit',
'int') ?
GETPOST(
'limit',
'int') : $conf->liste_limit;
57 $sortfield =
GETPOST(
'sortfield',
'aZ09comma');
58 $sortorder =
GETPOST(
'sortorder',
'aZ09comma');
60 if (empty($page) || $page == -1) {
63 $offset = $limit * $page;
64 $pageprev = $page - 1;
65 $pagenext = $page + 1;
67 $sortfield =
'a.datep,a.id';
70 $sortorder =
'DESC,DESC';
76 $diroutputmassaction = $conf->bookcal->dir_output.
'/temp/massgeneration/'.$user->id;
77 $hookmanager->initHooks(array(
'availabilitiesagenda',
'globalcard'));
79 $extrafields->fetch_name_optionals_label($object->table_element);
82 include DOL_DOCUMENT_ROOT.
'/core/actions_fetchobject.inc.php';
83 if ($id > 0 || !empty($ref)) {
84 $upload_dir = $conf->bookcal->multidir_output[!empty($object->entity) ? $object->entity : $conf->entity].
"/".$object->id;
89 $enablepermissioncheck = 0;
90 if ($enablepermissioncheck) {
91 $permissiontoread = $user->rights->bookcal->availabilities->read;
92 $permissiontoadd = $user->rights->bookcal->availabilities->write;
94 $permissiontoread = 1;
111 $parameters = array(
'id'=>$id);
112 $reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
117 if (empty($reshook)) {
119 if (
GETPOST(
'cancel',
'alpha') && !empty($backtopage)) {
120 header(
"Location: ".$backtopage);
125 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
127 $search_agenda_label =
'';
139 if ($object->id > 0) {
140 $title = $langs->trans(
"Agenda");
145 if (!empty($conf->notification->enabled)) {
146 $langs->load(
"mails");
151 print
dol_get_fiche_head($head,
'agenda', $langs->trans(
"Availabilities"), -1, $object->picto);
155 $linkback =
'<a href="'.dol_buildpath(
'/bookcal/availabilities_list.php', 1).
'?restore_lastsearch_values=1'.(!empty($socid) ?
'&socid='.$socid :
'').
'">'.$langs->trans(
"BackToList").
'</a>';
157 $morehtmlref =
'<div class="refidno">';
194 $morehtmlref .=
'</div>';
197 dol_banner_tab($object,
'ref', $linkback, 1,
'ref',
'ref', $morehtmlref);
199 print
'<div class="fichecenter">';
200 print
'<div class="underbanner clearboth"></div>';
202 $object->info($object->id);
213 $objthirdparty = $object;
214 $objcon =
new stdClass();
216 $out =
'&origin='.urlencode($object->element.
'@'.$object->module).
'&originid='.urlencode($object->id);
217 $urlbacktopage = $_SERVER[
'PHP_SELF'].
'?id='.$object->id;
218 $out .=
'&backtopage='.urlencode($urlbacktopage);
219 $permok = $user->rights->agenda->myactions->create;
220 if ((!empty($objthirdparty->id) || !empty($objcon->id)) && $permok) {
222 if (get_class($objthirdparty) ==
'Societe') {
223 $out .=
'&socid='.urlencode($objthirdparty->id);
225 $out .= (!empty($objcon->id) ?
'&contactid='.urlencode($objcon->id) :
'').
'&percentage=-1';
232 print
'<div class="tabsAction">';
235 if (!empty($user->rights->agenda->myactions->create) || !empty($user->rights->agenda->allactions->create)) {
236 print
'<a class="butAction" href="'.DOL_URL_ROOT.
'/comm/action/card.php?action=create'.$out.
'">'.$langs->trans(
"AddAction").
'</a>';
238 print
'<a class="butActionRefused classfortooltip" href="#">'.$langs->trans(
"AddAction").
'</a>';
244 if (
isModEnabled(
'agenda') && (!empty($user->rights->agenda->myactions->read) || !empty($user->rights->agenda->allactions->read))) {
245 $param =
'&id='.$object->id.(!empty($socid) ?
'&socid='.$socid :
'');
246 if (!empty($contextpage) && $contextpage != $_SERVER[
"PHP_SELF"]) {
247 $param .=
'&contextpage='.urlencode($contextpage);
249 if ($limit > 0 && $limit != $conf->liste_limit) {
250 $param .=
'&limit='.urlencode($limit);
258 $filters[
'search_agenda_label'] = $search_agenda_label;
259 $filters[
'search_rowid'] = $search_rowid;
262 show_actions_done($conf, $langs, $db, $object,
null, 0, $actioncode,
'', $filters, $sortfield, $sortorder, $object->module);