dolibarr 20.0.0
messaging.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2001-2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2005 Brice Davoleau <brice.davoleau@gmail.com>
4 * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
5 * Copyright (C) 2006-2019 Laurent Destailleur <eldy@users.sourceforge.net>
6 * Copyright (C) 2007 Patrick Raguin <patrick.raguin@gmail.com>
7 * Copyright (C) 2010 Juanjo Menent <jmenent@2byte.es>
8 * Copyright (C) 2015 Marcos García <marcosgdf@gmail.com>
9 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 3 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program. If not, see <https://www.gnu.org/licenses/>.
23 */
24
31// Load Dolibarr environment
32require '../main.inc.php';
33require_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php';
34require_once DOL_DOCUMENT_ROOT.'/adherents/class/adherent.class.php';
35require_once DOL_DOCUMENT_ROOT.'/adherents/class/adherent_type.class.php';
36require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
37require_once DOL_DOCUMENT_ROOT.'/core/lib/member.lib.php';
38
39// Load translation files required by the page
40$langs->loadLangs(array('agenda', 'bills', 'companies', 'orders', 'propal'));
41
42$contextpage = GETPOST('contextpage', 'aZ') ? GETPOST('contextpage', 'aZ') : 'useragenda';
43
44if (GETPOST('actioncode', 'array')) {
45 $actioncode = GETPOST('actioncode', 'array', 3);
46 if (!count($actioncode)) {
47 $actioncode = '0';
48 }
49} else {
50 $actioncode = GETPOST("actioncode", "alpha", 3) ? GETPOST("actioncode", "alpha", 3) : (GETPOST("actioncode") == '0' ? '0' : getDolGlobalString('AGENDA_DEFAULT_FILTER_TYPE_FOR_OBJECT'));
51}
52
53$id = GETPOSTINT('rowid') ? GETPOSTINT('rowid') : GETPOSTINT('id');
54$ref = GETPOST('ref', 'alpha');
55$search_rowid = GETPOST('search_rowid');
56$search_agenda_label = GETPOST('search_agenda_label');
57
58$limit = GETPOSTINT('limit') ? GETPOSTINT('limit') : $conf->liste_limit;
59$sortfield = GETPOST('sortfield', 'aZ09comma');
60$sortorder = GETPOST('sortorder', 'aZ09comma');
61$page = GETPOSTISSET('pageplusone') ? (GETPOSTINT('pageplusone') - 1) : GETPOSTINT("page");
62if (empty($page) || $page == -1) {
63 $page = 0;
64} // If $page is not defined, or '' or -1
65$offset = $limit * $page;
66$pageprev = $page - 1;
67$pagenext = $page + 1;
68if (!$sortfield) {
69 $sortfield = 'a.datep,a.id';
70}
71if (!$sortorder) {
72 $sortorder = 'DESC,DESC';
73}
74
75// Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
76$hookmanager->initHooks(array('agendathirdparty', 'globalcard'));
77
78// Security check
79$result = restrictedArea($user, 'adherent', $id);
80
81
82// Initialize technical objects
83$object = new Adherent($db);
84$result = $object->fetch($id);
85if ($result > 0) {
86 $object->fetch_thirdparty();
87
88 $adht = new AdherentType($db);
89 $result = $adht->fetch($object->typeid);
90}
91
92/*
93 * Actions
94 */
95
96$parameters = array('id' => $socid);
97$reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
98if ($reshook < 0) {
99 setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
100}
101
102if (empty($reshook)) {
103 // Cancel
104 if (GETPOST('cancel', 'alpha') && !empty($backtopage)) {
105 header("Location: ".$backtopage);
106 exit;
107 }
108
109 // Purge search criteria
110 if (GETPOST('button_removefilter_x', 'alpha') || GETPOST('button_removefilter.x', 'alpha') || GETPOST('button_removefilter', 'alpha')) { // All tests are required to be compatible with all browsers
111 $actioncode = '';
112 $search_agenda_label = '';
113 }
114}
115
116
117/*
118 * View
119 */
120
121$form = new Form($db);
122
123$person_name = !empty($object->firstname) ? $object->lastname.", ".$object->firstname : $object->lastname;
124$title = $person_name." - ".$langs->trans('Info');
125$help_url = '';
126llxHeader('', $title, $help_url);
127
128$head = member_prepare_head($object);
129
130$title = $langs->trans("User");
131print dol_get_fiche_head($head, 'agenda', $langs->trans("Member"), -1, 'user');
132
133$linkback = '<a href="'.DOL_URL_ROOT.'/adherents/list.php?restore_lastsearch_values=1">'.$langs->trans("BackToList").'</a>';
134
135$morehtmlref = '<a href="'.DOL_URL_ROOT.'/adherents/vcard.php?id='.$object->id.'" class="refid">';
136$morehtmlref .= img_picto($langs->trans("Download").' '.$langs->trans("VCard"), 'vcard.png', 'class="valignmiddle marginleftonly paddingrightonly"');
137$morehtmlref .= '</a>';
138
139dol_banner_tab($object, 'rowid', $linkback, 1, 'rowid', 'ref', $morehtmlref);
140
141print '<div class="fichecenter">';
142
143print '<div class="underbanner clearboth"></div>';
144
145$linkback = '';
146
147$object->info($id);
148dol_print_object_info($object, 1);
149
150print '</div>';
151
152
153print dol_get_fiche_end();
154
155$objUser = $object;
156$objcon = new stdClass();
157
158$out = '';
159$permok = $user->hasRight('agenda', 'myactions', 'create');
160if ((!empty($objUser->id) || !empty($objcon->id)) && $permok) {
161 if (is_object($objUser) && get_class($objUser) == 'User') {
162 $out .= '&amp;originid='.$objUser->id.($objUser->id > 0 ? '&amp;userid='.$objUser->id : '').'&amp;backtopage='.urlencode($_SERVER['PHP_SELF'].($objUser->id > 0 ? '?userid='.$objUser->id : ''));
163 }
164 $out .= (!empty($objcon->id) ? '&amp;contactid='.$objcon->id : '');
165 $out .= '&amp;datep='.dol_print_date(dol_now(), 'dayhourlog', 'tzuserrel');
166}
167
168$morehtmlright = '';
169
170$messagingUrl = DOL_URL_ROOT.'/adherents/messaging.php?rowid='.$object->id;
171$morehtmlright .= dolGetButtonTitle($langs->trans('ShowAsConversation'), '', 'fa fa-comments imgforviewmode', $messagingUrl, '', 2);
172$messagingUrl = DOL_URL_ROOT.'/adherents/agenda.php?id='.$object->id;
173$morehtmlright .= dolGetButtonTitle($langs->trans('MessageListViewType'), '', 'fa fa-bars imgforviewmode', $messagingUrl, '', 1);
174
175if (isModEnabled('agenda')) {
176 if ($user->hasRight('agenda', 'myactions', 'create') || $user->hasRight('agenda', 'allactions', 'create')) {
177 $morehtmlright .= dolGetButtonTitle($langs->trans('AddAction'), '', 'fa fa-plus-circle', DOL_URL_ROOT.'/comm/action/card.php?action=create'.$out);
178 }
179}
180
181if (isModEnabled('agenda') && ($user->hasRight('agenda', 'myactions', 'read') || $user->hasRight('agenda', 'allaactions', 'read'))) {
182 print '<br>';
183 $param = '&userid='.urlencode((string) ($id));
184 if (!empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) {
185 $param .= '&contextpage='.urlencode($contextpage);
186 }
187 if ($limit > 0 && $limit != $conf->liste_limit) {
188 $param .= '&limit='.((int) $limit);
189 }
190
191
192 // Try to know count of actioncomm from cache
193 require_once DOL_DOCUMENT_ROOT.'/core/lib/memory.lib.php';
194 $cachekey = 'count_events_user_'.$object->id;
195 $nbEvent = dol_getcache($cachekey); // TODO Add nb into badge in menu so we can get it from cache also here
196
197 $titlelist = $langs->trans("ActionsOnMember").(is_numeric($nbEvent) ? '<span class="opacitymedium colorblack paddingleft">('.$nbEvent.')</span>' : '');
198 if (!empty($conf->dol_optimize_smallscreen)) {
199 $titlelist = $langs->trans("Actions").(is_numeric($nbEvent) ? '<span class="opacitymedium colorblack paddingleft">('.$nbEvent.')</span>' : '');
200 }
201
202 print_barre_liste($titlelist, 0, $_SERVER["PHP_SELF"], '', $sortfield, $sortorder, '', -1, '', '', 0, $morehtmlright, '', 0, 1, 0);
203
204 // List of all actions
205 $filters = array();
206 $filters['search_agenda_label'] = $search_agenda_label;
207 $filters['search_rowid'] = $search_rowid;
208
209 show_actions_messaging($conf, $langs, $db, $object, null, 0, $actioncode, '', $filters, $sortfield, $sortorder);
210}
211
212//End of page
213llxFooter();
214$db->close();
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()
Empty header.
Definition wrapper.php:55
llxFooter()
Empty footer.
Definition wrapper.php:69
Class to manage members of a foundation.
Class to manage members type.
Class to manage generation of HTML components Only common components must be here.
dol_print_object_info($object, $usetable=0)
Show information on an object TODO Move this into html.formother.
show_actions_messaging($conf, $langs, $db, $filterobj, $objcon=null, $noprint=0, $actioncode='', $donetodo='done', $filters=array(), $sortfield='a.datep, a.id', $sortorder='DESC')
Show html area with actions in messaging format.
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.
print_barre_liste($title, $page, $file, $options='', $sortfield='', $sortorder='', $morehtmlcenter='', $num=-1, $totalnboflines='', $picto='generic', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limit=-1, $hideselectlimit=0, $hidenavigation=0, $pagenavastextinput=0, $morehtmlrightbeforearrow='')
Print a title with navigation controls for pagination.
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.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
member_prepare_head(Adherent $object)
Return array head with list of tabs to view object information.
dol_getcache($memoryid)
Read a memory area shared by all users, all sessions on server.
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.