dolibarr 21.0.0-beta
messaging.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2005-2016 Laurent Destailleur <eldy@users.sourceforge.net>
3 * Copyright (C) 2005-2009 Regis Houssin <regis.houssin@inodbox.com>
4 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
5 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 */
20
27// Load Dolibarr environment
28require '../main.inc.php';
29require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
30require_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
31require_once DOL_DOCUMENT_ROOT.'/core/lib/project.lib.php';
32require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
33
42// Load translation files required by the page
43$langs->load("projects");
44
45$id = GETPOSTINT('id');
46$ref = GETPOST('ref', 'alpha');
47$socid = GETPOSTINT('socid');
48$action = GETPOST('action', 'aZ09');
49$contextpage = GETPOST('contextpage', 'aZ09');
50
51$limit = GETPOSTINT('limit') ? GETPOSTINT('limit') : $conf->liste_limit;
52$sortfield = GETPOST("sortfield", "aZ09comma");
53$sortorder = GETPOST("sortorder", 'aZ09comma');
54$page = GETPOSTISSET('pageplusone') ? (GETPOSTINT('pageplusone') - 1) : GETPOSTINT("page");
55$page = is_numeric($page) ? $page : 0;
56$page = $page == -1 ? 0 : $page;
57if (!$sortfield) {
58 $sortfield = "a.datep,a.id";
59}
60if (!$sortorder) {
61 $sortorder = "DESC";
62}
63$offset = $limit * $page;
64$pageprev = $page - 1;
65$pagenext = $page + 1;
66
67if (GETPOST('actioncode', 'array')) {
68 $actioncode = GETPOST('actioncode', 'array', 3);
69 if (!count($actioncode)) {
70 $actioncode = '0';
71 }
72} else {
73 $actioncode = GETPOST("actioncode", "alpha", 3) ? GETPOST("actioncode", "alpha", 3) : (GETPOST("actioncode") == '0' ? '0' : getDolGlobalString('AGENDA_DEFAULT_FILTER_TYPE_FOR_OBJECT'));
74}
75$search_rowid = GETPOST('search_rowid');
76$search_agenda_label = GETPOST('search_agenda_label');
77
78$hookmanager->initHooks(array('projectcardinfo'));
79
80// Security check
81$id = GETPOSTINT("id");
82$socid = 0;
83//if ($user->socid > 0) $socid = $user->socid; // For external user, no check is done on company because readability is managed by public status of project and assignment.
84$result = restrictedArea($user, 'projet', $id, 'projet&project');
85
86if (!$user->hasRight('projet', 'lire')) {
88}
89
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
102// Purge search criteria
103if (GETPOST('button_removefilter_x', 'alpha') || GETPOST('button_removefilter.x', 'alpha') || GETPOST('button_removefilter', 'alpha')) { // All test are required to be compatible with all browsers
104 $actioncode = '';
105 $search_agenda_label = '';
106}
107
108
109
110/*
111 * View
112 */
113
114$form = new Form($db);
115$object = new Project($db);
116
117if ($id > 0 || !empty($ref)) {
118 $object->fetch($id, $ref);
119 $object->fetch_thirdparty();
120 if (getDolGlobalString('PROJECT_ALLOW_COMMENT_ON_PROJECT') && method_exists($object, 'fetchComments') && empty($object->comments)) {
121 $object->fetchComments();
122 }
123 $object->info($object->id);
124}
125$agenda = (isModEnabled('agenda') && ($user->hasRight('agenda', 'myactions', 'read') || $user->hasRight('agenda', 'allactions', 'read'))) ? '/'.$langs->trans("Agenda") : '';
126$title = $langs->trans('Events').$agenda.' - '.$object->ref.' '.$object->name;
127if (getDolGlobalString('MAIN_HTML_TITLE') && preg_match('/projectnameonly/', getDolGlobalString('MAIN_HTML_TITLE')) && $object->name) {
128 $title = $object->ref.' '.$object->name.' - '.$langs->trans("Info");
129}
130$help_url = "EN:Module_Projects|FR:Module_Projets|ES:M&oacute;dulo_Proyectos";
131llxHeader("", $title, $help_url, '', 0, 0, '', '', '', 'mod-project page-card_messaging');
132
133$head = project_prepare_head($object);
134
135print dol_get_fiche_head($head, 'agenda', $langs->trans("Project"), -1, ($object->public ? 'projectpub' : 'project'));
136
137
138// Project card
139
140if (!empty($_SESSION['pageforbacktolist']) && !empty($_SESSION['pageforbacktolist']['project'])) {
141 $tmpurl = $_SESSION['pageforbacktolist']['project'];
142 $tmpurl = preg_replace('/__SOCID__/', (string) $object->socid, $tmpurl);
143 $linkback = '<a href="'.$tmpurl.(preg_match('/\?/', $tmpurl) ? '&' : '?'). 'restore_lastsearch_values=1">'.$langs->trans("BackToList").'</a>';
144} else {
145 $linkback = '<a href="'.DOL_URL_ROOT.'/projet/list.php?restore_lastsearch_values=1">'.$langs->trans("BackToList").'</a>';
146}
147
148$morehtmlref = '<div class="refidno">';
149// Title
150$morehtmlref .= $object->title;
151// Thirdparty
152if (!empty($object->thirdparty->id) && $object->thirdparty->id > 0) {
153 $morehtmlref .= '<br>'.$object->thirdparty->getNomUrl(1, 'project');
154}
155$morehtmlref .= '</div>';
156
157// Define a complementary filter for search of next/prev ref.
158if (!$user->hasRight('projet', 'all', 'lire')) {
159 $objectsListId = $object->getProjectsAuthorizedForUser($user, 0, 0);
160 $object->next_prev_filter = "rowid:IN:(".$db->sanitize(count($objectsListId) ? implode(',', array_keys($objectsListId)) : '0').")";
161}
162
163dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref);
164
165
166print '<div class="fichecenter">';
167print '<div class="underbanner clearboth"></div>';
168
169dol_print_object_info($object, 1);
170
171print '</div>';
172
173print '<div class="clearboth"></div>';
174
175print dol_get_fiche_end();
176
177
178// Actions buttons
179
180$out = '';
181$permok = $user->hasRight('agenda', 'myactions', 'create');
182if ($permok) {
183 $out .= '&projectid='.$object->id;
184}
185
186
187
188//print '</div>';
189
190if (!empty($object->id)) {
191 print '<br>';
192
193 //print '<div class="tabsAction">';
194 $morehtmlright = '';
195
196 // Show link to change view in message
197 $messagingUrl = DOL_URL_ROOT.'/projet/messaging.php?id='.$object->id;
198 $morehtmlright .= dolGetButtonTitle($langs->trans('ShowAsConversation'), '', 'fa fa-comments imgforviewmode', $messagingUrl, '', 2);
199
200 // Show link to change view in agenda
201 $messagingUrl = DOL_URL_ROOT.'/projet/agenda.php?id='.$object->id;
202 $morehtmlright .= dolGetButtonTitle($langs->trans('MessageListViewType'), '', 'fa fa-bars imgforviewmode', $messagingUrl, '', 1);
203
204
205 // // Show link to send an email (if read and not closed)
206 // $btnstatus = $object->status < Ticket::STATUS_CLOSED && $action != "presend" && $action != "presend_addmessage";
207 // $url = 'card.php?track_id='.$object->track_id.'&action=presend_addmessage&mode=init&private_message=0&send_email=1&backtopage='.urlencode($_SERVER["PHP_SELF"].'?track_id='.$object->track_id).'#formmailbeforetitle';
208 // $morehtmlright .= dolGetButtonTitle($langs->trans('SendMail'), '', 'fa fa-paper-plane', $url, 'email-title-button', $btnstatus);
209
210 // // Show link to add a private message (if read and not closed)
211 // $btnstatus = $object->status < Ticket::STATUS_CLOSED && $action != "presend" && $action != "presend_addmessage";
212 // $url = 'card.php?track_id='.$object->track_id.'&action=presend_addmessage&mode=init&backtopage='.urlencode($_SERVER["PHP_SELF"].'?track_id='.$object->track_id).'#formmailbeforetitle';
213 // $morehtmlright .= dolGetButtonTitle($langs->trans('TicketAddMessage'), '', 'fa fa-comment-dots', $url, 'add-new-ticket-title-button', $btnstatus);
214
215 // Show link to add event
216 if (isModEnabled('agenda')) {
217 $addActionBtnRight = $user->hasRight('agenda', 'myactions', 'create') || $user->hasRight('agenda', 'allactions', 'create');
218 $morehtmlright .= dolGetButtonTitle($langs->trans('AddAction'), '', 'fa fa-plus-circle', DOL_URL_ROOT.'/comm/action/card.php?action=create'.$out.'&socid='.$object->socid.'&backtopage='.urlencode($_SERVER["PHP_SELF"].'?id='.$object->id), '', (int) $addActionBtnRight);
219 }
220
221 $param = '&id='.$object->id;
222 if (!empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) {
223 $param .= '&contextpage='.urlencode($contextpage);
224 }
225 if ($limit > 0 && $limit != $conf->liste_limit) {
226 $param .= '&limit='.((int) $limit);
227 }
228
229 require_once DOL_DOCUMENT_ROOT.'/core/lib/memory.lib.php';
230 $cachekey = 'count_events_project_'.$object->id;
231 $nbEvent = dol_getcache($cachekey);
232
233 $titlelist = $langs->trans("ActionsOnProject").(is_numeric($nbEvent) ? '<span class="opacitymedium colorblack paddingleft">('.$nbEvent.')</span>' : '');
234 if (!empty($conf->dol_optimize_smallscreen)) {
235 $titlelist = $langs->trans("Actions").(is_numeric($nbEvent) ? '<span class="opacitymedium colorblack paddingleft">('.$nbEvent.')</span>' : '');
236 }
237
238 print_barre_liste($titlelist, 0, $_SERVER["PHP_SELF"], '', $sortfield, $sortorder, '', 0, -1, '', 0, $morehtmlright, '', 0, 1, 0);
239
240 // List of all actions
241 $filters = array();
242 $filters['search_agenda_label'] = $search_agenda_label;
243 $filters['search_rowid'] = $search_rowid;
244
245 show_actions_messaging($conf, $langs, $db, $object, null, 0, $actioncode, '', $filters, $sortfield, $sortorder);
246}
247
248// End of page
249llxFooter();
250$db->close();
$id
Definition account.php:48
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:66
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:71
Class to manage generation of HTML components Only common components must be here.
Class to manage projects.
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.
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.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
print_barre_liste($title, $page, $file, $options='', $sortfield='', $sortorder='', $morehtmlcenter='', $num=-1, $totalnboflines='', $picto='generic', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limit=-1, $selectlimitsuffix=0, $hidenavigation=0, $pagenavastextinput=0, $morehtmlrightbeforearrow='')
Print a title with navigation controls for pagination.
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.
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.
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
Definition member.php:79
dol_getcache($memoryid)
Read a memory area shared by all users, all sessions on server.
project_prepare_head(Project $project, $moreparam='')
Prepare array with list of tabs.
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.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.