dolibarr 19.0.3
calendar_contact.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2007-2017 Laurent Destailleur <eldy@users.sourceforge.net>
3 * Copyright (C) 2023 Alice Adminson <aadminson@example.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <https://www.gnu.org/licenses/>.
17 */
18
25// Load Dolibarr environment
26$res = 0;
27// Try main.inc.php into web root known defined into CONTEXT_DOCUMENT_ROOT (not always defined)
28if (!$res && !empty($_SERVER["CONTEXT_DOCUMENT_ROOT"])) {
29 $res = @include $_SERVER["CONTEXT_DOCUMENT_ROOT"]."/main.inc.php";
30}
31// Try main.inc.php into web root detected using web root calculated from SCRIPT_FILENAME
32$tmp = empty($_SERVER['SCRIPT_FILENAME']) ? '' : $_SERVER['SCRIPT_FILENAME']; $tmp2 = realpath(__FILE__); $i = strlen($tmp) - 1; $j = strlen($tmp2) - 1;
33while ($i > 0 && $j > 0 && isset($tmp[$i]) && isset($tmp2[$j]) && $tmp[$i] == $tmp2[$j]) {
34 $i--;
35 $j--;
36}
37if (!$res && $i > 0 && file_exists(substr($tmp, 0, ($i + 1))."/main.inc.php")) {
38 $res = @include substr($tmp, 0, ($i + 1))."/main.inc.php";
39}
40if (!$res && $i > 0 && file_exists(dirname(substr($tmp, 0, ($i + 1)))."/main.inc.php")) {
41 $res = @include dirname(substr($tmp, 0, ($i + 1)))."/main.inc.php";
42}
43// Try main.inc.php using relative path
44if (!$res && file_exists("../main.inc.php")) {
45 $res = @include "../main.inc.php";
46}
47if (!$res && file_exists("../../main.inc.php")) {
48 $res = @include "../../main.inc.php";
49}
50if (!$res && file_exists("../../../main.inc.php")) {
51 $res = @include "../../../main.inc.php";
52}
53if (!$res) {
54 die("Include of main fails");
55}
56
57require_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php';
58require_once DOL_DOCUMENT_ROOT.'/core/class/html.formcompany.class.php';
59dol_include_once('/bookcal/class/calendar.class.php');
60dol_include_once('/bookcal/lib/bookcal_calendar.lib.php');
61
62// Load translation files required by the page
63$langs->loadLangs(array("bookcal@bookcal", "companies", "other", "mails"));
64
65$id = (GETPOST('id') ? GETPOST('id', 'int') : GETPOST('facid', 'int')); // For backward compatibility
66$ref = GETPOST('ref', 'alpha');
67$lineid = GETPOST('lineid', 'int');
68$socid = GETPOST('socid', 'int');
69$action = GETPOST('action', 'aZ09');
70
71// Initialize technical objects
72$object = new Calendar($db);
73$extrafields = new ExtraFields($db);
74$diroutputmassaction = $conf->bookcal->dir_output.'/temp/massgeneration/'.$user->id;
75$hookmanager->initHooks(array('calendarcontact', 'globalcard')); // Note that conf->hooks_modules contains array
76// Fetch optionals attributes and labels
77$extrafields->fetch_name_optionals_label($object->table_element);
78
79// Load object
80include DOL_DOCUMENT_ROOT.'/core/actions_fetchobject.inc.php'; // Must be include, not include_once // Must be include, not include_once. Include fetch and fetch_thirdparty but not fetch_optionals
81
82// There is several ways to check permission.
83// Set $enablepermissioncheck to 1 to enable a minimum low level of checks
84$enablepermissioncheck = 0;
85if ($enablepermissioncheck) {
86 $permissiontoread = $user->rights->bookcal->calendar->read;
87 $permission = $user->rights->bookcal->calendar->write;
88} else {
89 $permissiontoread = 1;
90 $permission = 1;
91}
92
93// Security check (enable the most restrictive one)
94//if ($user->socid > 0) accessforbidden();
95//if ($user->socid > 0) $socid = $user->socid;
96//$isdraft = (($object->status == $object::STATUS_DRAFT) ? 1 : 0);
97//restrictedArea($user, $object->module, $object->id, $object->table_element, $object->element, 'fk_soc', 'rowid', $isdraft);
98if (!isModEnabled("bookcal")) {
100}
101if (!$permissiontoread) {
103}
104
105
106/*
107 * Add a new contact
108 */
109
110if ($action == 'addcontact' && $permission) {
111 $contactid = (GETPOST('userid') ? GETPOST('userid', 'int') : GETPOST('contactid', 'int'));
112 $typeid = (GETPOST('typecontact') ? GETPOST('typecontact') : GETPOST('type'));
113 $result = $object->add_contact($contactid, $typeid, GETPOST("source", 'aZ09'));
114
115 if ($result >= 0) {
116 header("Location: ".$_SERVER['PHP_SELF']."?id=".$object->id);
117 exit;
118 } else {
119 if ($object->error == 'DB_ERROR_RECORD_ALREADY_EXISTS') {
120 $langs->load("errors");
121 setEventMessages($langs->trans("ErrorThisContactIsAlreadyDefinedAsThisType"), null, 'errors');
122 } else {
123 setEventMessages($object->error, $object->errors, 'errors');
124 }
125 }
126} elseif ($action == 'swapstatut' && $permission) {
127 // Toggle the status of a contact
128 $result = $object->swapContactStatus(GETPOST('ligne', 'int'));
129} elseif ($action == 'deletecontact' && $permission) {
130 // Deletes a contact
131 $result = $object->delete_contact($lineid);
132
133 if ($result >= 0) {
134 header("Location: ".$_SERVER['PHP_SELF']."?id=".$object->id);
135 exit;
136 } else {
137 dol_print_error($db);
138 }
139}
140
141
142/*
143 * View
144 */
145
146$title = $langs->trans('Calendar')." - ".$langs->trans('ContactsAddresses');
147$help_url = '';
148//$help_url='EN:Module_Third_Parties|FR:Module_Tiers|ES:Empresas';
149llxHeader('', $title, $help_url);
150
151$form = new Form($db);
152$formcompany = new FormCompany($db);
153$contactstatic = new Contact($db);
154$userstatic = new User($db);
155
156
157/* *************************************************************************** */
158/* */
159/* View and edit mode */
160/* */
161/* *************************************************************************** */
162
163if ($object->id) {
164 /*
165 * Show tabs
166 */
167 $head = calendarPrepareHead($object);
168
169 print dol_get_fiche_head($head, 'contact', $langs->trans("Calendar"), -1, $object->picto);
170
171 $linkback = '<a href="'.dol_buildpath('/bookcal/calendar_list.php', 1).'?restore_lastsearch_values=1'.(!empty($socid) ? '&socid='.$socid : '').'">'.$langs->trans("BackToList").'</a>';
172
173 $morehtmlref = '<div class="refidno">';
174 /*
175 // Ref customer
176 $morehtmlref.=$form->editfieldkey("RefCustomer", 'ref_client', $object->ref_client, $object, 0, 'string', '', 0, 1);
177 $morehtmlref.=$form->editfieldval("RefCustomer", 'ref_client', $object->ref_client, $object, 0, 'string', '', null, null, '', 1);
178 // Thirdparty
179 $morehtmlref.='<br>'.$langs->trans('ThirdParty') . ' : ' . (is_object($object->thirdparty) ? $object->thirdparty->getNomUrl(1) : '');
180 // Project
181 if (isModEnabled('project')) {
182 $langs->load("projects");
183 $morehtmlref.='<br>'.$langs->trans('Project') . ' ';
184 if ($permissiontoadd)
185 {
186 if ($action != 'classify')
187 //$morehtmlref.='<a class="editfielda" href="' . $_SERVER['PHP_SELF'] . '?action=classify&token='.newToken().'&id=' . $object->id . '">' . img_edit($langs->transnoentitiesnoconv('SetProject')) . '</a> : ';
188 $morehtmlref.=' : ';
189 if ($action == 'classify') {
190 //$morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'projectid', 0, 0, 1, 1);
191 $morehtmlref.='<form method="post" action="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'">';
192 $morehtmlref.='<input type="hidden" name="action" value="classin">';
193 $morehtmlref.='<input type="hidden" name="token" value="'.newToken().'">';
194 $morehtmlref.=$formproject->select_projects($object->socid, $object->fk_project, 'projectid', $maxlength, 0, 1, 0, 1, 0, 0, '', 1);
195 $morehtmlref.='<input type="submit" class="button valignmiddle" value="'.$langs->trans("Modify").'">';
196 $morehtmlref.='</form>';
197 } else {
198 $morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'none', 0, 0, 0, 1);
199 }
200 } else {
201 if (!empty($object->fk_project)) {
202 $proj = new Project($db);
203 $proj->fetch($object->fk_project);
204 $morehtmlref .= ': '.$proj->getNomUrl();
205 } else {
206 $morehtmlref .= '';
207 }
208 }
209 }*/
210 $morehtmlref .= '</div>';
211
212 dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref, '', 0, '', '', 1);
213
214 print dol_get_fiche_end();
215
216 print '<br>';
217
218 // Contacts lines (modules that overwrite templates must declare this into descriptor)
219 $dirtpls = array_merge($conf->modules_parts['tpl'], array('/core/tpl'));
220 foreach ($dirtpls as $reldir) {
221 $res = @include dol_buildpath($reldir.'/contacts.tpl.php');
222 if ($res) {
223 break;
224 }
225 }
226}
227
228// End of page
229llxFooter();
230$db->close();
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
Definition wrapper.php:55
llxFooter()
Empty footer.
Definition wrapper.php:69
calendarPrepareHead($object)
Prepare array of tabs for Calendar.
Class for Calendar.
Class to manage standard extra fields.
Class to build HTML component for third parties management Only common components are here.
Class to manage generation of HTML components Only common components must be here.
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.
if(!function_exists( 'dol_getprefix')) dol_include_once($relpath, $classname='')
Make an include_once using default root and alternate root if it fails.
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.
Contact()
Old copy.
Definition index.php:572