dolibarr 21.0.0-alpha
agenda.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-2009 Regis Houssin <regis.houssin@inodbox.com>
5 * Copyright (C) 2006-2011 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) 2024 Alexandre Spangaro <alexandre@inovea-conseil.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.'/adherents/class/adherent.class.php';
34require_once DOL_DOCUMENT_ROOT.'/adherents/class/adherent_type.class.php';
35require_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php';
36require_once DOL_DOCUMENT_ROOT.'/core/lib/member.lib.php';
37require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
38
39// Load translation files required by the page
40$langs->loadLangs(array('companies', 'members'));
41
42// Get Parameters
43$id = GETPOSTINT('id') ? GETPOSTINT('id') : GETPOSTINT('rowid');
44
45// Pagination
46$limit = GETPOSTINT('limit') ? GETPOSTINT('limit') : $conf->liste_limit;
47$sortfield = GETPOST('sortfield', 'aZ09comma');
48$sortorder = GETPOST('sortorder', 'aZ09comma');
49$page = GETPOSTISSET('pageplusone') ? (GETPOSTINT('pageplusone') - 1) : GETPOSTINT("page");
50if (empty($page) || $page == -1) {
51 $page = 0;
52} // If $page is not defined, or '' or -1
53$offset = $limit * $page;
54$pageprev = $page - 1;
55$pagenext = $page + 1;
56if (!$sortfield) {
57 $sortfield = 'a.datep,a.id';
58}
59if (!$sortorder) {
60 $sortorder = 'DESC';
61}
62
63if (GETPOST('actioncode', 'array')) {
64 $actioncode = GETPOST('actioncode', 'array', 3);
65 if (!count($actioncode)) {
66 $actioncode = '0';
67 }
68} else {
69 $actioncode = GETPOST("actioncode", "alpha", 3) ? GETPOST("actioncode", "alpha", 3) : (GETPOST("actioncode") == '0' ? '0' : getDolGlobalString('AGENDA_DEFAULT_FILTER_TYPE_FOR_OBJECT'));
70}
71$search_rowid = GETPOST('search_rowid');
72$search_agenda_label = GETPOST('search_agenda_label');
73
74// Get object canvas (By default, this is not defined, so standard usage of dolibarr)
75$objcanvas = null;
76
77// Initialize a technical object to manage hooks of page. Note that conf->hooks_modules contains an array of hook context
78$hookmanager->initHooks(array('memberagenda', 'globalcard'));
79
80// Security check
81$result = restrictedArea($user, 'adherent', $id);
82
83// Initialize a technical objects
84$object = new Adherent($db);
85$result = $object->fetch($id);
86if ($result > 0) {
87 $object->fetch_thirdparty();
88
89 $adht = new AdherentType($db);
90 $result = $adht->fetch($object->typeid);
91}
92
93
94/*
95 * Actions
96 */
97
98$parameters = array('id'=>$id, 'objcanvas'=>$objcanvas);
99$reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
100if ($reshook < 0) {
101 setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
102}
103
104if (empty($reshook)) {
105 // Cancel
106 if (GETPOST('cancel', 'alpha') && !empty($backtopage)) {
107 header("Location: ".$backtopage);
108 exit;
109 }
110
111 // Purge search criteria
112 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
113 $actioncode = '';
114 $search_rowid = '';
115 $search_agenda_label = '';
116 }
117}
118
119
120
121/*
122 * View
123 */
124
125$contactstatic = new Contact($db);
126
127$form = new Form($db);
128
129
130if ($object->id > 0) {
131 require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
132 require_once DOL_DOCUMENT_ROOT.'/societe/class/societe.class.php';
133
134 $langs->load("companies");
135
136 $title = $langs->trans("Member")." - ".$langs->trans("Agenda");
137
138 $help_url = "EN:Module_Foundations|FR:Module_Adh&eacute;rents|ES:M&oacute;dulo_Miembros|DE:Modul_Mitglieder";
139
140 llxHeader('', $title, $help_url, '', 0, 0, '', '', '', 'mod-member page-card_agenda');
141
142 if (isModEnabled('notification')) {
143 $langs->load("mails");
144 }
145 $head = member_prepare_head($object);
146
147 print dol_get_fiche_head($head, 'agenda', $langs->trans("Member"), -1, 'user');
148
149 $linkback = '<a href="'.DOL_URL_ROOT.'/adherents/list.php?restore_lastsearch_values=1">'.$langs->trans("BackToList").'</a>';
150
151 $morehtmlref = '<a href="'.DOL_URL_ROOT.'/adherents/vcard.php?id='.$object->id.'" class="refid">';
152 $morehtmlref .= img_picto($langs->trans("Download").' '.$langs->trans("VCard"), 'vcard.png', 'class="valignmiddle marginleftonly paddingrightonly"');
153 $morehtmlref .= '</a>';
154
155 dol_banner_tab($object, 'rowid', $linkback, 1, 'rowid', 'ref', $morehtmlref);
156
157 print '<div class="fichecenter">';
158
159 print '<div class="underbanner clearboth"></div>';
160
161 $object->info($id);
162 dol_print_object_info($object, 1);
163
164 print '</div>';
165
166 print dol_get_fiche_end();
167
168
169 //print '<div class="tabsAction">';
170 //print '</div>';
171
172
173 $newcardbutton = '';
174
175 $messagingUrl = DOL_URL_ROOT.'/adherents/messaging.php?rowid='.$object->id;
176 $newcardbutton .= dolGetButtonTitle($langs->trans('ShowAsConversation'), '', 'fa fa-comments imgforviewmode', $messagingUrl, '', 1);
177 $messagingUrl = DOL_URL_ROOT.'/adherents/agenda.php?id='.$object->id;
178 $newcardbutton .= dolGetButtonTitle($langs->trans('MessageListViewType'), '', 'fa fa-bars imgforviewmode', $messagingUrl, '', 2);
179
180 if (isModEnabled('agenda')) {
181 $newcardbutton .= dolGetButtonTitle($langs->trans('AddAction'), '', 'fa fa-plus-circle', DOL_URL_ROOT.'/comm/action/card.php?action=create&backtopage='.urlencode($_SERVER['PHP_SELF']).($object->id > 0 ? '?id='.$object->id : '').'&origin=member&originid='.$id);
182 }
183
184 if (isModEnabled('agenda') && ($user->hasRight('agenda', 'myactions', 'read') || $user->hasRight('agenda', 'allactions', 'read'))) {
185 print '<br>';
186
187 $param = '&id='.$id;
188 if (!empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) {
189 $param .= '&contextpage='.$contextpage;
190 }
191 if ($limit > 0 && $limit != $conf->liste_limit) {
192 $param .= '&limit='.$limit;
193 }
194
195 require_once DOL_DOCUMENT_ROOT.'/core/lib/memory.lib.php';
196 $cachekey = 'count_events_member_'.$object->id;
197 $nbEvent = dol_getcache($cachekey);
198
199 $titlelist = $langs->trans("ActionsOnMember").(is_numeric($nbEvent) ? '<span class="opacitymedium colorblack paddingleft">('.$nbEvent.')</span>' : '');
200 if (!empty($conf->dol_optimize_smallscreen)) {
201 $titlelist = $langs->trans("Actions").(is_numeric($nbEvent) ? '<span class="opacitymedium colorblack paddingleft">('.$nbEvent.')</span>' : '');
202 }
203
204 print_barre_liste($titlelist, 0, $_SERVER["PHP_SELF"], '', $sortfield, $sortorder, '', 0, -1, '', 0, $newcardbutton, '', 0, 1, 0);
205
206 // List of all actions
207 $filters = array();
208 $filters['search_agenda_label'] = $search_agenda_label;
209 $filters['search_rowid'] = $search_rowid;
210
211 // TODO Replace this with same code than into list.php
212 show_actions_done($conf, $langs, $db, $object, null, 0, $actioncode, '', $filters, $sortfield, $sortorder);
213 }
214}
215
216// End of page
217llxFooter();
218$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 members of a foundation.
Class to manage members type.
Class to manage contact/addresses.
Class to manage generation of HTML components Only common components must be here.
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).
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.
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.
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.
getDolGlobalString($key, $default='')
Return a 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.