dolibarr  19.0.0-dev
myobject_agenda.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2017 Laurent Destailleur <eldy@users.sourceforge.net>
3  * Copyright (C) ---Put here your own copyright and developer email---
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program. If not, see <https://www.gnu.org/licenses/>.
17  */
18 
25 //if (! defined('NOREQUIREDB')) define('NOREQUIREDB', '1'); // Do not create database handler $db
26 //if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER', '1'); // Do not load object $user
27 //if (! defined('NOREQUIRESOC')) define('NOREQUIRESOC', '1'); // Do not load object $mysoc
28 //if (! defined('NOREQUIRETRAN')) define('NOREQUIRETRAN', '1'); // Do not load object $langs
29 //if (! defined('NOSCANGETFORINJECTION')) define('NOSCANGETFORINJECTION', '1'); // Do not check injection attack on GET parameters
30 //if (! defined('NOSCANPOSTFORINJECTION')) define('NOSCANPOSTFORINJECTION', '1'); // Do not check injection attack on POST parameters
31 //if (! defined('NOTOKENRENEWAL')) define('NOTOKENRENEWAL', '1'); // Do not roll the Anti CSRF token (used if MAIN_SECURITY_CSRF_WITH_TOKEN is on)
32 //if (! defined('NOSTYLECHECK')) define('NOSTYLECHECK', '1'); // Do not check style html tag into posted data
33 //if (! defined('NOREQUIREMENU')) define('NOREQUIREMENU', '1'); // If there is no need to load and show top and left menu
34 //if (! defined('NOREQUIREHTML')) define('NOREQUIREHTML', '1'); // If we don't need to load the html.form.class.php
35 //if (! defined('NOREQUIREAJAX')) define('NOREQUIREAJAX', '1'); // Do not load ajax.lib.php library
36 //if (! defined("NOLOGIN")) define("NOLOGIN", '1'); // If this page is public (can be called outside logged session). This include the NOIPCHECK too.
37 //if (! defined('NOIPCHECK')) define('NOIPCHECK', '1'); // Do not check IP defined into conf $dolibarr_main_restrict_ip
38 //if (! defined("MAIN_LANG_DEFAULT")) define('MAIN_LANG_DEFAULT', 'auto'); // Force lang to a particular value
39 //if (! defined("MAIN_AUTHENTICATION_MODE")) define('MAIN_AUTHENTICATION_MODE', 'aloginmodule'); // Force authentication handler
40 //if (! defined("MAIN_SECURITY_FORCECSP")) define('MAIN_SECURITY_FORCECSP', 'none'); // Disable all Content Security Policies
41 //if (! defined('CSRFCHECK_WITH_TOKEN')) define('CSRFCHECK_WITH_TOKEN', '1'); // Force use of CSRF protection with tokens even for GET
42 //if (! defined('NOBROWSERNOTIF')) define('NOBROWSERNOTIF', '1'); // Disable browser notification
43 
44 // Load Dolibarr environment
45 $res = 0;
46 // Try main.inc.php into web root known defined into CONTEXT_DOCUMENT_ROOT (not always defined)
47 if (!$res && !empty($_SERVER["CONTEXT_DOCUMENT_ROOT"])) {
48  $res = @include $_SERVER["CONTEXT_DOCUMENT_ROOT"]."/main.inc.php";
49 }
50 // Try main.inc.php into web root detected using web root calculated from SCRIPT_FILENAME
51 $tmp = empty($_SERVER['SCRIPT_FILENAME']) ? '' : $_SERVER['SCRIPT_FILENAME']; $tmp2 = realpath(__FILE__); $i = strlen($tmp) - 1; $j = strlen($tmp2) - 1;
52 while ($i > 0 && $j > 0 && isset($tmp[$i]) && isset($tmp2[$j]) && $tmp[$i] == $tmp2[$j]) {
53  $i--; $j--;
54 }
55 if (!$res && $i > 0 && file_exists(substr($tmp, 0, ($i + 1))."/main.inc.php")) {
56  $res = @include substr($tmp, 0, ($i + 1))."/main.inc.php";
57 }
58 if (!$res && $i > 0 && file_exists(dirname(substr($tmp, 0, ($i + 1)))."/main.inc.php")) {
59  $res = @include dirname(substr($tmp, 0, ($i + 1)))."/main.inc.php";
60 }
61 // Try main.inc.php using relative path
62 if (!$res && file_exists("../main.inc.php")) {
63  $res = @include "../main.inc.php";
64 }
65 if (!$res && file_exists("../../main.inc.php")) {
66  $res = @include "../../main.inc.php";
67 }
68 if (!$res && file_exists("../../../main.inc.php")) {
69  $res = @include "../../../main.inc.php";
70 }
71 if (!$res) {
72  die("Include of main fails");
73 }
74 
75 require_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php';
76 require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
77 require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
78 dol_include_once('/mymodule/class/myobject.class.php');
79 dol_include_once('/mymodule/lib/mymodule_myobject.lib.php');
80 
81 // Load translation files required by the page
82 $langs->loadLangs(array("mymodule@mymodule", "other"));
83 
84 // Get parameters
85 $id = GETPOST('id', 'int');
86 $ref = GETPOST('ref', 'alpha');
87 $action = GETPOST('action', 'aZ09');
88 $cancel = GETPOST('cancel', 'aZ09');
89 $contextpage = GETPOST('contextpage', 'aZ') ? GETPOST('contextpage', 'aZ') : str_replace('_', '', basename(dirname(__FILE__)).basename(__FILE__, '.php')); // To manage different context of search
90 $backtopage = GETPOST('backtopage', 'alpha');
91 
92 if (GETPOST('actioncode', 'array')) {
93  $actioncode = GETPOST('actioncode', 'array', 3);
94  if (!count($actioncode)) {
95  $actioncode = '0';
96  }
97 } else {
98  $actioncode = GETPOST("actioncode", "alpha", 3) ? GETPOST("actioncode", "alpha", 3) : (GETPOST("actioncode") == '0' ? '0' : getDolGlobalString('AGENDA_DEFAULT_FILTER_TYPE_FOR_OBJECT'));
99 }
100 $search_rowid = GETPOST('search_rowid');
101 $search_agenda_label = GETPOST('search_agenda_label');
102 
103 $limit = GETPOST('limit', 'int') ? GETPOST('limit', 'int') : $conf->liste_limit;
104 $sortfield = GETPOST('sortfield', 'aZ09comma');
105 $sortorder = GETPOST('sortorder', 'aZ09comma');
106 $page = GETPOSTISSET('pageplusone') ? (GETPOST('pageplusone') - 1) : GETPOST("page", 'int');
107 if (empty($page) || $page == -1) {
108  $page = 0;
109 } // If $page is not defined, or '' or -1
110 $offset = $limit * $page;
111 $pageprev = $page - 1;
112 $pagenext = $page + 1;
113 if (!$sortfield) {
114  $sortfield = 'a.datep,a.id';
115 }
116 if (!$sortorder) {
117  $sortorder = 'DESC,DESC';
118 }
119 
120 // Initialize technical objects
121 $object = new MyObject($db);
122 $extrafields = new ExtraFields($db);
123 $diroutputmassaction = $conf->mymodule->dir_output.'/temp/massgeneration/'.$user->id;
124 $hookmanager->initHooks(array($object->element.'agenda', 'globalcard')); // Note that conf->hooks_modules contains array
125 // Fetch optionals attributes and labels
126 $extrafields->fetch_name_optionals_label($object->table_element);
127 
128 // Load object
129 include DOL_DOCUMENT_ROOT.'/core/actions_fetchobject.inc.php'; // Must be include, not include_once // Must be include, not include_once. Include fetch and fetch_thirdparty but not fetch_optionals
130 if ($id > 0 || !empty($ref)) {
131  $upload_dir = $conf->mymodule->multidir_output[!empty($object->entity) ? $object->entity : $conf->entity]."/".$object->id;
132 }
133 
134 // There is several ways to check permission.
135 // Set $enablepermissioncheck to 1 to enable a minimum low level of checks
136 $enablepermissioncheck = 0;
137 if ($enablepermissioncheck) {
138  $permissiontoread = $user->rights->mymodule->myobject->read;
139  $permissiontoadd = $user->rights->mymodule->myobject->write;
140 } else {
141  $permissiontoread = 1;
142  $permissiontoadd = 1;
143 }
144 
145 // Security check (enable the most restrictive one)
146 //if ($user->socid > 0) accessforbidden();
147 //if ($user->socid > 0) $socid = $user->socid;
148 //$isdraft = (($object->status == $object::STATUS_DRAFT) ? 1 : 0);
149 //restrictedArea($user, $object->module, $object->id, $object->table_element, $object->element, 'fk_soc', 'rowid', $isdraft);
150 if (!isModEnabled("mymodule")) {
151  accessforbidden();
152 }
153 if (!$permissiontoread) accessforbidden();
154 
155 
156 /*
157  * Actions
158  */
159 
160 $parameters = array('id'=>$id);
161 $reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
162 if ($reshook < 0) {
163  setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
164 }
165 
166 if (empty($reshook)) {
167  // Cancel
168  if (GETPOST('cancel', 'alpha') && !empty($backtopage)) {
169  header("Location: ".$backtopage);
170  exit;
171  }
172 
173  // Purge search criteria
174  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
175  $actioncode = '';
176  $search_agenda_label = '';
177  }
178 }
179 
180 
181 
182 /*
183  * View
184  */
185 
186 $form = new Form($db);
187 
188 if ($object->id > 0) {
189  $title = $langs->trans("MyObject")." - ".$langs->trans('Agenda');
190  //$title = $object->ref." - ".$langs->trans("Agenda");
191  $help_url = 'EN:Module_Agenda_En|DE:Modul_Terminplanung';
192  llxHeader('', $title, $help_url);
193 
194  if (isModEnabled('notification')) {
195  $langs->load("mails");
196  }
197  $head = myobjectPrepareHead($object);
198 
199 
200  print dol_get_fiche_head($head, 'agenda', $langs->trans("MyObject"), -1, $object->picto);
201 
202  // Object card
203  // ------------------------------------------------------------
204  $linkback = '<a href="'.dol_buildpath('/mymodule/myobject_list.php', 1).'?restore_lastsearch_values=1'.(!empty($socid) ? '&socid='.$socid : '').'">'.$langs->trans("BackToList").'</a>';
205 
206  $morehtmlref = '<div class="refidno">';
207  /*
208  // Ref customer
209  $morehtmlref.=$form->editfieldkey("RefCustomer", 'ref_client', $object->ref_client, $object, 0, 'string', '', 0, 1);
210  $morehtmlref.=$form->editfieldval("RefCustomer", 'ref_client', $object->ref_client, $object, 0, 'string', '', null, null, '', 1);
211  // Thirdparty
212  $morehtmlref.='<br>'.$langs->trans('ThirdParty') . ' : ' . (is_object($object->thirdparty) ? $object->thirdparty->getNomUrl(1) : '');
213  // Project
214  if (isModEnabled('project')) {
215  $langs->load("projects");
216  $morehtmlref.='<br>'.$langs->trans('Project') . ' ';
217  if ($permissiontoadd) {
218  if ($action != 'classify') {
219  //$morehtmlref.='<a class="editfielda" href="' . $_SERVER['PHP_SELF'] . '?action=classify&token='.newToken().'&id=' . $object->id . '">' . img_edit($langs->transnoentitiesnoconv('SetProject')) . '</a> : ';
220  }
221  $morehtmlref.=' : ';
222  if ($action == 'classify') {
223  //$morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'projectid', 0, 0, 1, 1);
224  $morehtmlref.='<form method="post" action="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'">';
225  $morehtmlref.='<input type="hidden" name="action" value="classin">';
226  $morehtmlref.='<input type="hidden" name="token" value="'.newToken().'">';
227  $morehtmlref.=$formproject->select_projects($object->socid, $object->fk_project, 'projectid', $maxlength, 0, 1, 0, 1, 0, 0, '', 1);
228  $morehtmlref.='<input type="submit" class="button valignmiddle" value="'.$langs->trans("Modify").'">';
229  $morehtmlref.='</form>';
230  } else {
231  $morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'none', 0, 0, 0, 1);
232  }
233  } else {
234  if (!empty($object->fk_project)) {
235  $proj = new Project($db);
236  $proj->fetch($object->fk_project);
237  $morehtmlref .= ': '.$proj->getNomUrl();
238  } else {
239  $morehtmlref .= '';
240  }
241  }
242  }*/
243  $morehtmlref .= '</div>';
244 
245 
246  dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref);
247 
248  print '<div class="fichecenter">';
249  print '<div class="underbanner clearboth"></div>';
250 
251  $object->info($object->id);
252  dol_print_object_info($object, 1);
253 
254  print '</div>';
255 
256  print dol_get_fiche_end();
257 
258 
259 
260  // Actions buttons
261 
262  $objthirdparty = $object;
263  $objcon = new stdClass();
264 
265  $out = '&origin='.urlencode($object->element.(property_exists($object, 'module') ? '@'.$object->module : '')).'&originid='.urlencode($object->id);
266  $urlbacktopage = $_SERVER['PHP_SELF'].'?id='.$object->id;
267  $out .= '&backtopage='.urlencode($urlbacktopage);
268  $permok = $user->hasRight('agenda', 'myactions', 'create');
269  if ((!empty($objthirdparty->id) || !empty($objcon->id)) && $permok) {
270  //$out.='<a href="'.DOL_URL_ROOT.'/comm/action/card.php?action=create';
271  if (get_class($objthirdparty) == 'Societe') {
272  $out .= '&socid='.urlencode($objthirdparty->id);
273  }
274  $out .= (!empty($objcon->id) ? '&contactid='.urlencode($objcon->id) : '');
275  //$out.=$langs->trans("AddAnAction").' ';
276  //$out.=img_picto($langs->trans("AddAnAction"),'filenew');
277  //$out.="</a>";
278  }
279 
280  $morehtmlright = '';
281 
282  //$messagingUrl = DOL_URL_ROOT.'/societe/messaging.php?socid='.$object->id;
283  //$morehtmlright .= dolGetButtonTitle($langs->trans('ShowAsConversation'), '', 'fa fa-comments imgforviewmode', $messagingUrl, '', 1);
284  //$messagingUrl = DOL_URL_ROOT.'/societe/agenda.php?socid='.$object->id;
285  //$morehtmlright .= dolGetButtonTitle($langs->trans('MessageListViewType'), '', 'fa fa-bars imgforviewmode', $messagingUrl, '', 2);
286 
287  if (isModEnabled('agenda')) {
288  if ($user->hasRight('agenda', 'myactions', 'create') || $user->hasRight('agenda', 'allactions', 'create')) {
289  $morehtmlright .= dolGetButtonTitle($langs->trans('AddAction'), '', 'fa fa-plus-circle', DOL_URL_ROOT.'/comm/action/card.php?action=create'.$out);
290  } else {
291  $morehtmlright .= dolGetButtonTitle($langs->trans('AddAction'), '', 'fa fa-plus-circle', DOL_URL_ROOT.'/comm/action/card.php?action=create'.$out, '', 0);
292  }
293  }
294 
295 
296  if (isModEnabled('agenda') && ($user->hasRight('agenda', 'myactions', 'read') || $user->hasRight('agenda', 'allactions', 'read'))) {
297  print '<br>';
298 
299  $param = '&id='.$object->id.(!empty($socid) ? '&socid='.$socid : '');
300  if (!empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) {
301  $param .= '&contextpage='.urlencode($contextpage);
302  }
303  if ($limit > 0 && $limit != $conf->liste_limit) {
304  $param .= '&limit='.((int) $limit);
305  }
306 
307  // Try to know count of actioncomm from cache
308  /*require_once DOL_DOCUMENT_ROOT.'/core/lib/memory.lib.php';
309  $cachekey = 'count_events_myobject_'.$object->id;
310  $nbEvent = dol_getcache($cachekey);
311 
312  print_barre_liste($langs->trans("ActionsOnMyObject").(is_numeric($nbEvent) ? '<span class="opacitymedium colorblack paddingleft">('.$nbEvent.')</span>': ''), 0, $_SERVER["PHP_SELF"], '', $sortfield, $sortorder, '', 0, -1, '', 0, $morehtmlright, '', 0, 1, 1);
313  */
314  print_barre_liste($langs->trans("ActionsOnMyObject"), 0, $_SERVER["PHP_SELF"], '', $sortfield, $sortorder, '', 0, -1, '', 0, $morehtmlright, '', 0, 1, 0);
315 
316  // List of all actions
317  $filters = array();
318  $filters['search_agenda_label'] = $search_agenda_label;
319  $filters['search_rowid'] = $search_rowid;
320 
321  // TODO Replace this with same code than into list.php
322  show_actions_done($conf, $langs, $db, $object, null, 0, $actioncode, '', $filters, $sortfield, $sortorder, property_exists($object, 'module') ? $object->module : '');
323  }
324 }
325 
326 // End of page
327 llxFooter();
328 $db->close();
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)) $help_url
View.
Definition: agenda.php:118
if(!defined('NOREQUIRESOC')) if(!defined('NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) llxHeader()
Empty header.
Definition: wrapper.php:56
llxFooter()
Empty footer.
Definition: wrapper.php:70
Class to manage standard extra fields.
Class to manage generation of HTML components Only common components must be here.
Class for MyObject.
show_actions_done($conf, $langs, $db, $filterobj, $objcon='', $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).
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
Definition: card.php:143
dol_print_object_info($object, $usetable=0)
Show informations on an object TODO Move this into html.formother.
dol_banner_tab($object, $paramid, $morehtml='', $shownav=1, $fieldid='rowid', $fieldref='ref', $morehtmlref='', $moreparam='', $nodbprefix=0, $morehtmlleft='', $morehtmlstatus='', $onlybanner=0, $morehtmlright='')
Show tab footer of a card.
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.
if(!function_exists('dol_getprefix')) dol_include_once($relpath, $classname='')
Make an include_once using default root and alternate root if it fails.
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.
print_barre_liste($titre, $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.
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.
myobjectPrepareHead($object)
Prepare array of tabs for MyObject.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.