dolibarr  20.0.0-beta
agenda.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  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program. If not, see <https://www.gnu.org/licenses/>.
18  */
19 
26 // Load Dolibarr environment
27 require '../main.inc.php';
28 require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
29 require_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
30 require_once DOL_DOCUMENT_ROOT.'/core/lib/project.lib.php';
31 require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
32 
33 // Load translation files required by the page
34 $langs->load("projects");
35 
36 $id = GETPOSTINT('id');
37 $ref = GETPOST('ref', 'alpha');
38 $socid = GETPOSTINT('socid');
39 $action = GETPOST('action', 'aZ09');
40 $contextpage = GETPOST('contextpage', 'aZ09');
41 
42 $limit = GETPOSTINT('limit') ? GETPOSTINT('limit') : $conf->liste_limit;
43 $sortfield = GETPOST("sortfield", "aZ09comma");
44 $sortorder = GETPOST("sortorder", 'aZ09comma');
45 $page = GETPOSTISSET('pageplusone') ? (GETPOSTINT('pageplusone') - 1) : GETPOSTINT("page");
46 $page = is_numeric($page) ? $page : 0;
47 $page = $page == -1 ? 0 : $page;
48 if (!$sortfield) {
49  $sortfield = "a.datep,a.id";
50 }
51 if (!$sortorder) {
52  $sortorder = "DESC";
53 }
54 $offset = $limit * $page;
55 $pageprev = $page - 1;
56 $pagenext = $page + 1;
57 
58 if (GETPOST('actioncode', 'array')) {
59  $actioncode = GETPOST('actioncode', 'array', 3);
60  if (!count($actioncode)) {
61  $actioncode = '0';
62  }
63 } else {
64  $actioncode = GETPOST("actioncode", "alpha", 3) ? GETPOST("actioncode", "alpha", 3) : (GETPOST("actioncode") == '0' ? '0' : getDolGlobalString('AGENDA_DEFAULT_FILTER_TYPE_FOR_OBJECT'));
65 }
66 $search_rowid = GETPOST('search_rowid');
67 $search_agenda_label = GETPOST('search_agenda_label');
68 
69 $hookmanager->initHooks(array('projectcardinfo'));
70 
71 // Security check
72 $id = GETPOSTINT("id");
73 $socid = 0;
74 //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.
75 $result = restrictedArea($user, 'projet', $id, 'projet&project');
76 
77 if (!$user->hasRight('projet', 'lire')) {
79 }
80 
81 
82 
83 /*
84  * Actions
85  */
86 
87 $parameters = array('id' => $socid);
88 $reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
89 if ($reshook < 0) {
90  setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
91 }
92 
93 // Purge search criteria
94 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
95  $actioncode = '';
96  $search_agenda_label = '';
97 }
98 
99 
100 
101 /*
102  * View
103  */
104 
105 $form = new Form($db);
106 $object = new Project($db);
107 
108 if ($id > 0 || !empty($ref)) {
109  $object->fetch($id, $ref);
110  $object->fetch_thirdparty();
111  if (getDolGlobalString('PROJECT_ALLOW_COMMENT_ON_PROJECT') && method_exists($object, 'fetchComments') && empty($object->comments)) {
112  $object->fetchComments();
113  }
114  $object->info($object->id);
115 }
116 $agenda = (isModEnabled('agenda') && ($user->hasRight('agenda', 'myactions', 'read') || $user->hasRight('agenda', 'allactions', 'read'))) ? '/'.$langs->trans("Agenda") : '';
117 $title = $langs->trans('Events').$agenda.' - '.$object->ref.' '.$object->name;
118 if (getDolGlobalString('MAIN_HTML_TITLE') && preg_match('/projectnameonly/', getDolGlobalString('MAIN_HTML_TITLE')) && $object->name) {
119  $title = $object->ref.' '.$object->name.' - '.$langs->trans("Info");
120 }
121 $help_url = "EN:Module_Projects|FR:Module_Projets|ES:M&oacute;dulo_Proyectos";
122 llxHeader("", $title, $help_url);
123 
125 
126 print dol_get_fiche_head($head, 'agenda', $langs->trans("Project"), -1, ($object->public ? 'projectpub' : 'project'));
127 
128 
129 // Project card
130 
131 if (!empty($_SESSION['pageforbacktolist']) && !empty($_SESSION['pageforbacktolist']['project'])) {
132  $tmpurl = $_SESSION['pageforbacktolist']['project'];
133  $tmpurl = preg_replace('/__SOCID__/', (string) $object->socid, $tmpurl);
134  $linkback = '<a href="'.$tmpurl.(preg_match('/\?/', $tmpurl) ? '&' : '?'). 'restore_lastsearch_values=1">'.$langs->trans("BackToList").'</a>';
135 } else {
136  $linkback = '<a href="'.DOL_URL_ROOT.'/projet/list.php?restore_lastsearch_values=1">'.$langs->trans("BackToList").'</a>';
137 }
138 
139 $morehtmlref = '<div class="refidno">';
140 // Title
141 $morehtmlref .= $object->title;
142 // Thirdparty
143 if (!empty($object->thirdparty->id) && $object->thirdparty->id > 0) {
144  $morehtmlref .= '<br>'.$object->thirdparty->getNomUrl(1, 'project');
145 }
146 $morehtmlref .= '</div>';
147 
148 // Define a complementary filter for search of next/prev ref.
149 if (!$user->hasRight('projet', 'all', 'lire')) {
150  $objectsListId = $object->getProjectsAuthorizedForUser($user, 0, 0);
151  $object->next_prev_filter = "rowid IN (".$db->sanitize(count($objectsListId) ? implode(',', array_keys($objectsListId)) : '0').")";
152 }
153 
154 dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref);
155 
156 
157 print '<div class="fichecenter">';
158 print '<div class="underbanner clearboth"></div>';
159 
161 
162 print '</div>';
163 
164 print '<div class="clearboth"></div>';
165 
166 print dol_get_fiche_end();
167 
168 
169 // Actions buttons
170 
171 $out = '';
172 $permok = $user->hasRight('agenda', 'myactions', 'create');
173 if ($permok) {
174  $out .= '&projectid='.$object->id;
175 }
176 
177 
178 
179 //print '</div>';
180 
181 if (!empty($object->id)) {
182  print '<br>';
183 
184  //print '<div class="tabsAction">';
185  $morehtmlright = '';
186 
187  // Show link to change view in message
188  $messagingUrl = DOL_URL_ROOT.'/projet/messaging.php?id='.$object->id;
189  $morehtmlright .= dolGetButtonTitle($langs->trans('ShowAsConversation'), '', 'fa fa-comments imgforviewmode', $messagingUrl, '', 1);
190 
191  // Show link to change view in agenda
192  $messagingUrl = DOL_URL_ROOT.'/projet/agenda.php?id='.$object->id;
193  $morehtmlright .= dolGetButtonTitle($langs->trans('MessageListViewType'), '', 'fa fa-bars imgforviewmode', $messagingUrl, '', 2);
194 
195 
196  // // Show link to send an email (if read and not closed)
197  // $btnstatus = $object->status < Ticket::STATUS_CLOSED && $action != "presend" && $action != "presend_addmessage";
198  // $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';
199  // $morehtmlright .= dolGetButtonTitle($langs->trans('SendMail'), '', 'fa fa-paper-plane', $url, 'email-title-button', $btnstatus);
200 
201  // // Show link to add a private message (if read and not closed)
202  // $btnstatus = $object->status < Ticket::STATUS_CLOSED && $action != "presend" && $action != "presend_addmessage";
203  // $url = 'card.php?track_id='.$object->track_id.'&action=presend_addmessage&mode=init&backtopage='.urlencode($_SERVER["PHP_SELF"].'?track_id='.$object->track_id).'#formmailbeforetitle';
204  // $morehtmlright .= dolGetButtonTitle($langs->trans('TicketAddMessage'), '', 'fa fa-comment-dots', $url, 'add-new-ticket-title-button', $btnstatus);
205 
206  // Show link to add event
207  if (isModEnabled('agenda')) {
208  $addActionBtnRight = $user->hasRight('agenda', 'myactions', 'create') || $user->hasRight('agenda', 'allactions', 'create');
209  $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), '', $addActionBtnRight);
210  }
211 
212  $param = '&id='.$object->id;
213  if (!empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) {
214  $param .= '&contextpage='.urlencode($contextpage);
215  }
216  if ($limit > 0 && $limit != $conf->liste_limit) {
217  $param .= '&limit='.((int) $limit);
218  }
219 
220  require_once DOL_DOCUMENT_ROOT.'/core/lib/memory.lib.php';
221  $cachekey = 'count_events_project_'.$object->id;
222  $nbEvent = dol_getcache($cachekey);
223 
224  $titlelist = $langs->trans("ActionsOnProject").(is_numeric($nbEvent) ? '<span class="opacitymedium colorblack paddingleft">('.$nbEvent.')</span>' : '');
225 
226  print_barre_liste($titlelist, 0, $_SERVER["PHP_SELF"], '', $sortfield, $sortorder, '', 0, -1, '', 0, $morehtmlright, '', 0, 1, 0);
227 
228  // List of all actions
229  $filters = array();
230  $filters['search_agenda_label'] = $search_agenda_label;
231  $filters['search_rowid'] = $search_rowid;
232 
233  show_actions_done($conf, $langs, $db, $object, null, 0, $actioncode, '', $filters, $sortfield, $sortorder);
234 }
235 
236 // End of page
237 llxFooter();
238 $db->close();
if($user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition: card.php:58
if(GETPOST('button_removefilter_x', 'alpha')||GETPOST('button_removefilter.x', 'alpha')||GETPOST('button_removefilter', 'alpha')) if(GETPOST('button_search_x', 'alpha')||GETPOST('button_search.x', 'alpha')||GETPOST('button_search', 'alpha')) if($action=="save" &&empty($cancel)) $form
View.
Definition: agenda.php:116
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 generation of HTML components Only common components must be here.
Class to manage projects.
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).
dol_print_object_info($object, $usetable=0)
Show information on an object TODO Move this into html.formother.
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.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
GETPOSTISSET($paramname)
Return true if we are in a context of submitting the parameter $paramname from a POST of a form.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
isModEnabled($module)
Is Dolibarr module enabled.
dol_getcache($memoryid)
Read a memory area shared by all users, all sessions on server.
Definition: memory.lib.php:141
project_prepare_head(Project $project, $moreparam='')
Prepare array with list of tabs.
Definition: project.lib.php:40
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.