dolibarr 21.0.0-alpha
agenda.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2004-2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2004-2018 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2004 Benoit Mortier <benoit.mortier@opensides.be>
5 * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
6 * Copyright (C) 2007 Franky Van Liedekerke <franky.van.liedekerke@telenet.be>
7 * Copyright (C) 2013 Florian Henry <florian.henry@open-concept.pro>
8 * Copyright (C) 2013-2024 Alexandre Spangaro <alexandre@inovea-conseil.com>
9 * Copyright (C) 2014 Juanjo Menent <jmenent@2byte.es>
10 * Copyright (C) 2015 Jean-François Ferry <jfefe@aternatik.fr>
11 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 3 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program. If not, see <https://www.gnu.org/licenses/>.
25 */
26
34// Load Dolibarr environment
35require '../main.inc.php';
36require_once DOL_DOCUMENT_ROOT.'/comm/action/class/actioncomm.class.php';
37require_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php';
38require_once DOL_DOCUMENT_ROOT.'/core/lib/contact.lib.php';
39require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
40require_once DOL_DOCUMENT_ROOT.'/core/lib/images.lib.php';
41require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
42require_once DOL_DOCUMENT_ROOT.'/core/class/html.formcompany.class.php';
43require_once DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php';
44require_once DOL_DOCUMENT_ROOT.'/core/class/doleditor.class.php';
45require_once DOL_DOCUMENT_ROOT.'/core/class/html.form.class.php';
46require_once DOL_DOCUMENT_ROOT.'/user/class/user.class.php';
47require_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php';
48require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
49
50// Load translation files required by the page
51$langs->loadLangs(array('companies', 'users', 'other', 'commercial'));
52
53$mesg = ''; $error = 0; $errors = array();
54
55// Get parameters
56$action = (GETPOST('action', 'alpha') ? GETPOST('action', 'alpha') : 'view');
57$confirm = GETPOST('confirm', 'alpha');
58$backtopage = GETPOST('backtopage', 'alpha');
59$id = GETPOSTINT('id');
60$socid = GETPOSTINT('socid');
61
62// Initialize objects
63$object = new Contact($db);
64$extrafields = new ExtraFields($db);
65
66// fetch optionals attributes and labels
67$extrafields->fetch_name_optionals_label($object->table_element);
68
69// Get object canvas (By default, this is not defined, so standard usage of dolibarr)
70$object->getCanvas($id);
71$objcanvas = null;
72$canvas = (!empty($object->canvas) ? $object->canvas : GETPOST("canvas"));
73if (!empty($canvas)) {
74 require_once DOL_DOCUMENT_ROOT.'/core/class/canvas.class.php';
75 $objcanvas = new Canvas($db, $action);
76 $objcanvas->getCanvas('contact', 'contactcard', $canvas);
77}
78
79if (GETPOST('actioncode', 'array')) {
80 $actioncode = GETPOST('actioncode', 'array', 3);
81 if (!count($actioncode)) {
82 $actioncode = '0';
83 }
84} else {
85 $actioncode = GETPOST("actioncode", "alpha", 3) ? GETPOST("actioncode", "alpha", 3) : (GETPOST("actioncode") == '0' ? '0' : getDolGlobalString('AGENDA_DEFAULT_FILTER_TYPE_FOR_OBJECT'));
86}
87$search_rowid = GETPOST('search_rowid');
88$search_agenda_label = GETPOST('search_agenda_label');
89
90// Security check
91if ($user->socid) {
92 $socid = $user->socid;
93}
94
95// Initialize a technical object to manage hooks of page. Note that conf->hooks_modules contains an array of hook context
96$hookmanager->initHooks(array('contactagenda', 'globalcard'));
97
98$result = restrictedArea($user, 'contact', $id, 'socpeople&societe', '', '', 'rowid', 0); // If we create a contact with no company (shared contacts), no check on write permission
99
100$limit = GETPOSTINT('limit') ? GETPOSTINT('limit') : $conf->liste_limit;
101$sortfield = GETPOST('sortfield', 'aZ09comma');
102$sortorder = GETPOST('sortorder', 'aZ09comma');
103$page = GETPOSTISSET('pageplusone') ? (GETPOSTINT('pageplusone') - 1) : GETPOSTINT('page');
104if (empty($page) || $page < 0 || GETPOST('button_search', 'alpha') || GETPOST('button_removefilter', 'alpha')) {
105 // If $page is not defined, or '' or -1 or if we click on clear filters
106 $page = 0;
107}
108$offset = $limit * $page;
109$pageprev = $page - 1;
110$pagenext = $page + 1;
111if (!$sortfield) {
112 $sortfield = 'a.datep, a.id';
113}
114if (!$sortorder) {
115 $sortorder = 'DESC';
116}
117
118
119/*
120 * Actions
121 */
122
123$parameters = array('id'=>$id, 'objcanvas'=>$objcanvas);
124$reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
125if ($reshook < 0) {
126 setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
127}
128
129if (empty($reshook)) {
130 // Cancel
131 if (GETPOST('cancel', 'alpha') && !empty($backtopage)) {
132 header("Location: ".$backtopage);
133 exit;
134 }
135
136 // Purge search criteria
137 if (GETPOST('button_removefilter_x', 'alpha') || GETPOST('button_removefilter.x', 'alpha') || GETPOST('button_removefilter', 'alpha')) { // All test are required to be compatible with all browsers
138 $actioncode = '';
139 $search_agenda_label = '';
140 }
141}
142
143
144/*
145 * View
146 */
147
148$form = new Form($db);
149
150$title = $langs->trans("ContactEvents");
151if (getDolGlobalString('MAIN_HTML_TITLE') && preg_match('/contactnameonly/', getDolGlobalString('MAIN_HTML_TITLE')) && $object->lastname) {
152 $title = $object->lastname;
153}
154$help_url = 'EN:Module_Third_Parties|FR:Module_Tiers|ES:Empresas|DE:Modul_Partner';
155
156llxHeader('', $title, $help_url, '', 0, 0, '', '', '', 'mod-societe page-contact-card_agenda');
157
158
159if ($socid > 0) {
160 $objsoc = new Societe($db);
161 $objsoc->fetch($socid);
162}
163
164if (is_object($objcanvas) && $objcanvas->displayCanvasExists($action)) {
165 // -----------------------------------------
166 // When used with CANVAS
167 // -----------------------------------------
168 if (empty($object->error) && $id) {
169 $object = new Contact($db);
170 $result = $object->fetch($id);
171 if ($result <= 0) {
172 dol_print_error(null, $object->error);
173 }
174 }
175 $objcanvas->assign_values($action, $object->id, $object->ref); // Set value for templates
176 $objcanvas->display_canvas($action); // Show template
177} else {
178 // -----------------------------------------
179 // When used in standard mode
180 // -----------------------------------------
181
182 // Confirm deleting contact
183 if ($user->hasRight('societe', 'contact', 'supprimer')) {
184 if ($action == 'delete') {
185 print $form->formconfirm($_SERVER["PHP_SELF"]."?id=".$id.($backtopage ? '&backtopage='.$backtopage : ''), $langs->trans("DeleteContact"), $langs->trans("ConfirmDeleteContact"), "confirm_delete", '', 0, 1);
186 }
187 }
188
189 /*
190 * Onglets
191 */
192 $head = array();
193 if ($id > 0) {
194 // Si edition contact deja existent
195 $object = new Contact($db);
196 $res = $object->fetch($id, $user);
197 if ($res < 0) {
198 dol_print_error($db, $object->error);
199 exit;
200 }
201 $res = $object->fetch_optionals();
202 if ($res < 0) {
203 dol_print_error($db, $object->error);
204 exit;
205 }
206
207 // Show tabs
208 $head = contact_prepare_head($object);
209
210 $title = (getDolGlobalString('SOCIETE_ADDRESSES_MANAGEMENT') ? $langs->trans("Contacts") : $langs->trans("ContactsAddresses"));
211 }
212
213 if (!empty($id) && $action != 'edit' && $action != 'create') {
214 $objsoc = new Societe($db);
215
216 /*
217 * Card in view mode
218 */
219
220 dol_htmloutput_errors((string) $error, $errors);
221
222 print dol_get_fiche_head($head, 'agenda', $title, -1, 'contact');
223
224 $linkback = '<a href="'.DOL_URL_ROOT.'/contact/list.php?restore_lastsearch_values=1">'.$langs->trans("BackToList").'</a>';
225
226 $morehtmlref = '<a href="'.DOL_URL_ROOT.'/contact/vcard.php?id='.$object->id.'" class="refid">';
227 $morehtmlref .= img_picto($langs->trans("Download").' '.$langs->trans("VCard"), 'vcard.png', 'class="valignmiddle marginleftonly paddingrightonly"');
228 $morehtmlref .= '</a>';
229
230 $morehtmlref .= '<div class="refidno">';
231 if (!getDolGlobalString('SOCIETE_DISABLE_CONTACTS')) {
232 $objsoc = new Societe($db);
233 $objsoc->fetch($object->socid);
234 // Thirdparty
235 if ($objsoc->id > 0) {
236 $morehtmlref .= $objsoc->getNomUrl(1);
237 } else {
238 $morehtmlref .= '<span class="opacitymedium">'.$langs->trans("ContactNotLinkedToCompany").'</span>';
239 }
240 }
241 $morehtmlref .= '</div>';
242
243 dol_banner_tab($object, 'id', $linkback, 1, 'rowid', 'ref', $morehtmlref);
244
245 print '<div class="fichecenter">';
246
247 print '<div class="underbanner clearboth"></div>';
248
249 $object->info($id);
250 dol_print_object_info($object, 1);
251
252 print '</div>';
253
254 print dol_get_fiche_end();
255
256
257 // Actions buttons
258
259 $objcon = $object;
260 $object->fetch_thirdparty();
261 $objthirdparty = $object->thirdparty;
262
263 $out = '';
264 $newcardbutton = '';
265 $messagingUrl = DOL_URL_ROOT.'/contact/messaging.php?id='.$object->id;
266 $newcardbutton .= dolGetButtonTitle($langs->trans('ShowAsConversation'), '', 'fa fa-comments imgforviewmode', $messagingUrl, '', 1);
267 $messagingUrl = DOL_URL_ROOT.'/contact/agenda.php?id='.$object->id;
268 $newcardbutton .= dolGetButtonTitle($langs->trans('MessageListViewType'), '', 'fa fa-bars imgforviewmode', $messagingUrl, '', 2);
269
270 if (isModEnabled('agenda')) {
271 $permok = $user->hasRight('agenda', 'myactions', 'create');
272 if ((!empty($objthirdparty->id) || !empty($objcon->id)) && $permok) {
273 if (is_object($objthirdparty) && get_class($objthirdparty) == 'Societe') {
274 $out .= '&amp;originid='.$objthirdparty->id.($objthirdparty->id > 0 ? '&amp;socid='.$objthirdparty->id : '');
275 }
276 $out .= (!empty($objcon->id) ? '&amp;contactid='.$objcon->id : '').'&amp;origin=contact&amp;originid='.$object->id.'&amp;backtopage='.urlencode($_SERVER['PHP_SELF'].($objcon->id > 0 ? '?id='.$objcon->id : ''));
277 $out .= '&amp;datep='.urlencode(dol_print_date(dol_now(), 'dayhourlog'));
278 }
279
280 if ($user->hasRight('agenda', 'myactions', 'create') || $user->hasRight('agenda', 'allactions', 'create')) {
281 $newcardbutton .= dolGetButtonTitle($langs->trans('AddAction'), '', 'fa fa-plus-circle', DOL_URL_ROOT.'/comm/action/card.php?action=create'.$out);
282 }
283 }
284
285 if (isModEnabled('agenda') && ($user->hasRight('agenda', 'myactions', 'read') || $user->hasRight('agenda', 'allactions', 'read'))) {
286 print '<br>';
287
288 $param = '&id='.$id;
289 if (!empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) {
290 $param .= '&contextpage='.$contextpage;
291 }
292 if ($limit > 0 && $limit != $conf->liste_limit) {
293 $param .= '&limit='.$limit;
294 }
295
296 print load_fiche_titre($langs->trans("ActionsOnContact"), $newcardbutton, '');
297 //print_barre_liste($langs->trans("ActionsOnCompany"), 0, $_SERVER["PHP_SELF"], '', $sortfield, $sortorder, $morehtmlcenter, 0, -1, '', '', '', '', 0, 1, 1);
298
299 // List of all actions
300 $filters = array();
301 $filters['search_agenda_label'] = $search_agenda_label;
302 $filters['search_rowid'] = $search_rowid;
303
304 show_actions_done($conf, $langs, $db, $objthirdparty, $object, 0, $actioncode, '', $filters, $sortfield, $sortorder);
305 }
306 }
307}
308
309
310llxFooter();
311
312$db->close();
$id
Definition account.php:39
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:58
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Definition wrapper.php:70
Class to manage canvas.
Class to manage contact/addresses.
Class to manage standard extra fields.
Class to manage generation of HTML components Only common components must be here.
Class to manage third parties objects (customers, suppliers, prospects...)
show_actions_done($conf, $langs, $db, $filterobj, $objcon=null, $noprint=0, $actioncode='', $donetodo='done', $filters=array(), $sortfield='a.datep, a.id', $sortorder='DESC', $module='')
Show html area with actions (done or not, ignore the name of function).
contact_prepare_head(Contact $object)
Prepare array with list of tabs.
llxFooter()
Footer empty.
Definition document.php:107
dol_print_object_info($object, $usetable=0)
Show information on an object TODO Move this into html.formother.
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
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.
dolGetButtonTitle($label, $helpText='', $iconClass='fa fa-file', $url='', $id='', $status=1, $params=array())
Function dolGetButtonTitle : this kind of buttons are used in title in list.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
dol_now($mode='auto')
Return date for now.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
dol_htmloutput_errors($mesgstring='', $mesgarray=array(), $keepembedded=0)
Print formatted error messages to output (Used to show messages on html output).
restrictedArea(User $user, $features, $object=0, $tableandshare='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $isdraft=0, $mode=0)
Check permissions of a user to show a page and an object.