dolibarr  16.0.5
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('NOCSRFCHECK')) define('NOCSRFCHECK', '1'); // Do not check CSRF attack (test on referer + on token if option MAIN_SECURITY_CSRF_WITH_TOKEN is on).
32 //if (! defined('NOTOKENRENEWAL')) define('NOTOKENRENEWAL', '1'); // Do not roll the Anti CSRF token (used if MAIN_SECURITY_CSRF_WITH_TOKEN is on)
33 //if (! defined('NOSTYLECHECK')) define('NOSTYLECHECK', '1'); // Do not check style html tag into posted data
34 //if (! defined('NOREQUIREMENU')) define('NOREQUIREMENU', '1'); // If there is no need to load and show top and left menu
35 //if (! defined('NOREQUIREHTML')) define('NOREQUIREHTML', '1'); // If we don't need to load the html.form.class.php
36 //if (! defined('NOREQUIREAJAX')) define('NOREQUIREAJAX', '1'); // Do not load ajax.lib.php library
37 //if (! defined("NOLOGIN")) define("NOLOGIN", '1'); // If this page is public (can be called outside logged session). This include the NOIPCHECK too.
38 //if (! defined('NOIPCHECK')) define('NOIPCHECK', '1'); // Do not check IP defined into conf $dolibarr_main_restrict_ip
39 //if (! defined("MAIN_LANG_DEFAULT")) define('MAIN_LANG_DEFAULT', 'auto'); // Force lang to a particular value
40 //if (! defined("MAIN_AUTHENTICATION_MODE")) define('MAIN_AUTHENTICATION_MODE', 'aloginmodule'); // Force authentication handler
41 //if (! defined("NOREDIRECTBYMAINTOLOGIN")) define('NOREDIRECTBYMAINTOLOGIN', 1); // The main.inc.php does not make a redirect if not logged, instead show simple error message
42 //if (! defined("FORCECSP")) define('FORCECSP', 'none'); // Disable all Content Security Policies
43 //if (! defined('CSRFCHECK_WITH_TOKEN')) define('CSRFCHECK_WITH_TOKEN', '1'); // Force use of CSRF protection with tokens even for GET
44 //if (! defined('NOBROWSERNOTIF')) define('NOBROWSERNOTIF', '1'); // Disable browser notification
45 
46 // Load Dolibarr environment
47 $res = 0;
48 // Try main.inc.php into web root known defined into CONTEXT_DOCUMENT_ROOT (not always defined)
49 if (!$res && !empty($_SERVER["CONTEXT_DOCUMENT_ROOT"])) {
50  $res = @include $_SERVER["CONTEXT_DOCUMENT_ROOT"]."/main.inc.php";
51 }
52 // Try main.inc.php into web root detected using web root calculated from SCRIPT_FILENAME
53 $tmp = empty($_SERVER['SCRIPT_FILENAME']) ? '' : $_SERVER['SCRIPT_FILENAME']; $tmp2 = realpath(__FILE__); $i = strlen($tmp) - 1; $j = strlen($tmp2) - 1;
54 while ($i > 0 && $j > 0 && isset($tmp[$i]) && isset($tmp2[$j]) && $tmp[$i] == $tmp2[$j]) {
55  $i--; $j--;
56 }
57 if (!$res && $i > 0 && file_exists(substr($tmp, 0, ($i + 1))."/main.inc.php")) {
58  $res = @include substr($tmp, 0, ($i + 1))."/main.inc.php";
59 }
60 if (!$res && $i > 0 && file_exists(dirname(substr($tmp, 0, ($i + 1)))."/main.inc.php")) {
61  $res = @include dirname(substr($tmp, 0, ($i + 1)))."/main.inc.php";
62 }
63 // Try main.inc.php using relative path
64 if (!$res && file_exists("../main.inc.php")) {
65  $res = @include "../main.inc.php";
66 }
67 if (!$res && file_exists("../../main.inc.php")) {
68  $res = @include "../../main.inc.php";
69 }
70 if (!$res && file_exists("../../../main.inc.php")) {
71  $res = @include "../../../main.inc.php";
72 }
73 if (!$res) {
74  die("Include of main fails");
75 }
76 
77 require_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php';
78 require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
79 require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
80 dol_include_once('/mymodule/class/myobject.class.php');
81 dol_include_once('/mymodule/lib/mymodule_myobject.lib.php');
82 
83 
84 // Load translation files required by the page
85 $langs->loadLangs(array("mymodule@mymodule", "other"));
86 
87 // Get parameters
88 $id = GETPOST('id', 'int');
89 $ref = GETPOST('ref', 'alpha');
90 $action = GETPOST('action', 'aZ09');
91 $cancel = GETPOST('cancel', 'aZ09');
92 $backtopage = GETPOST('backtopage', 'alpha');
93 
94 if (GETPOST('actioncode', 'array')) {
95  $actioncode = GETPOST('actioncode', 'array', 3);
96  if (!count($actioncode)) {
97  $actioncode = '0';
98  }
99 } else {
100  $actioncode = GETPOST("actioncode", "alpha", 3) ? GETPOST("actioncode", "alpha", 3) : (GETPOST("actioncode") == '0' ? '0' : (empty($conf->global->AGENDA_DEFAULT_FILTER_TYPE_FOR_OBJECT) ? '' : $conf->global->AGENDA_DEFAULT_FILTER_TYPE_FOR_OBJECT));
101 }
102 $search_agenda_label = GETPOST('search_agenda_label');
103 
104 $limit = GETPOST('limit', 'int') ? GETPOST('limit', 'int') : $conf->liste_limit;
105 $sortfield = GETPOST('sortfield', 'aZ09comma');
106 $sortorder = GETPOST('sortorder', 'aZ09comma');
107 $page = GETPOSTISSET('pageplusone') ? (GETPOST('pageplusone') - 1) : GETPOST("page", 'int');
108 if (empty($page) || $page == -1) {
109  $page = 0;
110 } // If $page is not defined, or '' or -1
111 $offset = $limit * $page;
112 $pageprev = $page - 1;
113 $pagenext = $page + 1;
114 if (!$sortfield) {
115  $sortfield = 'a.datep,a.id';
116 }
117 if (!$sortorder) {
118  $sortorder = 'DESC,DESC';
119 }
120 
121 // Initialize technical objects
122 $object = new MyObject($db);
123 $extrafields = new ExtraFields($db);
124 $diroutputmassaction = $conf->mymodule->dir_output.'/temp/massgeneration/'.$user->id;
125 $hookmanager->initHooks(array('myobjectagenda', 'globalcard')); // Note that conf->hooks_modules contains array
126 // Fetch optionals attributes and labels
127 $extrafields->fetch_name_optionals_label($object->table_element);
128 
129 // Load object
130 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
131 if ($id > 0 || !empty($ref)) {
132  $upload_dir = $conf->mymodule->multidir_output[!empty($object->entity) ? $object->entity : $conf->entity]."/".$object->id;
133 }
134 
135 // There is several ways to check permission.
136 // Set $enablepermissioncheck to 1 to enable a minimum low level of checks
137 $enablepermissioncheck = 0;
138 if ($enablepermissioncheck) {
139  $permissiontoread = $user->rights->mymodule->myobject->read;
140  $permissiontoadd = $user->rights->mymodule->myobject->write;
141 } else {
142  $permissiontoread = 1;
143  $permissiontoadd = 1;
144 }
145 
146 // Security check (enable the most restrictive one)
147 //if ($user->socid > 0) accessforbidden();
148 //if ($user->socid > 0) $socid = $user->socid;
149 //$isdraft = (($object->status == $object::STATUS_DRAFT) ? 1 : 0);
150 //restrictedArea($user, $object->element, $object->id, $object->table_element, '', 'fk_soc', 'rowid', $isdraft);
151 if (empty($conf->mymodule->enabled)) accessforbidden();
152 if (!$permissiontoread) accessforbidden();
153 
154 
155 /*
156  * Actions
157  */
158 
159 $parameters = array('id'=>$id);
160 $reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
161 if ($reshook < 0) {
162  setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
163 }
164 
165 if (empty($reshook)) {
166  // Cancel
167  if (GETPOST('cancel', 'alpha') && !empty($backtopage)) {
168  header("Location: ".$backtopage);
169  exit;
170  }
171 
172  // Purge search criteria
173  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
174  $actioncode = '';
175  $search_agenda_label = '';
176  }
177 }
178 
179 
180 
181 /*
182  * View
183  */
184 
185 $form = new Form($db);
186 
187 if ($object->id > 0) {
188  $title = $langs->trans("Agenda");
189  //if (! empty($conf->global->MAIN_HTML_TITLE) && preg_match('/thirdpartynameonly/',$conf->global->MAIN_HTML_TITLE) && $object->name) $title=$object->name." - ".$title;
190  $help_url = 'EN:Module_Agenda_En';
191  llxHeader('', $title, $help_url);
192 
193  if (!empty($conf->notification->enabled)) {
194  $langs->load("mails");
195  }
196  $head = myobjectPrepareHead($object);
197 
198 
199  print dol_get_fiche_head($head, 'agenda', $langs->trans("MyObject"), -1, $object->picto);
200 
201  // Object card
202  // ------------------------------------------------------------
203  $linkback = '<a href="'.dol_buildpath('/mymodule/myobject_list.php', 1).'?restore_lastsearch_values=1'.(!empty($socid) ? '&socid='.$socid : '').'">'.$langs->trans("BackToList").'</a>';
204 
205  $morehtmlref = '<div class="refidno">';
206  /*
207  // Ref customer
208  $morehtmlref.=$form->editfieldkey("RefCustomer", 'ref_client', $object->ref_client, $object, 0, 'string', '', 0, 1);
209  $morehtmlref.=$form->editfieldval("RefCustomer", 'ref_client', $object->ref_client, $object, 0, 'string', '', null, null, '', 1);
210  // Thirdparty
211  $morehtmlref.='<br>'.$langs->trans('ThirdParty') . ' : ' . (is_object($object->thirdparty) ? $object->thirdparty->getNomUrl(1) : '');
212  // Project
213  if (! empty($conf->project->enabled)) {
214  $langs->load("projects");
215  $morehtmlref.='<br>'.$langs->trans('Project') . ' ';
216  if ($permissiontoadd) {
217  if ($action != 'classify') {
218  //$morehtmlref.='<a class="editfielda" href="' . $_SERVER['PHP_SELF'] . '?action=classify&token='.newToken().'&id=' . $object->id . '">' . img_edit($langs->transnoentitiesnoconv('SetProject')) . '</a> : ';
219  }
220  $morehtmlref.=' : ';
221  if ($action == 'classify') {
222  //$morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'projectid', 0, 0, 1, 1);
223  $morehtmlref.='<form method="post" action="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'">';
224  $morehtmlref.='<input type="hidden" name="action" value="classin">';
225  $morehtmlref.='<input type="hidden" name="token" value="'.newToken().'">';
226  $morehtmlref.=$formproject->select_projects($object->socid, $object->fk_project, 'projectid', $maxlength, 0, 1, 0, 1, 0, 0, '', 1);
227  $morehtmlref.='<input type="submit" class="button valignmiddle" value="'.$langs->trans("Modify").'">';
228  $morehtmlref.='</form>';
229  } else {
230  $morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'none', 0, 0, 0, 1);
231  }
232  } else {
233  if (! empty($object->fk_project)) {
234  $proj = new Project($db);
235  $proj->fetch($object->fk_project);
236  $morehtmlref .= ': '.$proj->getNomUrl();
237  } else {
238  $morehtmlref .= '';
239  }
240  }
241  }*/
242  $morehtmlref .= '</div>';
243 
244 
245  dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref);
246 
247  print '<div class="fichecenter">';
248  print '<div class="underbanner clearboth"></div>';
249 
250  $object->info($object->id);
251  dol_print_object_info($object, 1);
252 
253  print '</div>';
254 
255  print dol_get_fiche_end();
256 
257 
258 
259  // Actions buttons
260 
261  $objthirdparty = $object;
262  $objcon = new stdClass();
263 
264  $out = '&origin='.urlencode($object->element.'@'.$object->module).'&originid='.urlencode($object->id);
265  $urlbacktopage = $_SERVER['PHP_SELF'].'?id='.$object->id;
266  $out .= '&backtopage='.urlencode($urlbacktopage);
267  $permok = $user->rights->agenda->myactions->create;
268  if ((!empty($objthirdparty->id) || !empty($objcon->id)) && $permok) {
269  //$out.='<a href="'.DOL_URL_ROOT.'/comm/action/card.php?action=create';
270  if (get_class($objthirdparty) == 'Societe') {
271  $out .= '&socid='.urlencode($objthirdparty->id);
272  }
273  $out .= (!empty($objcon->id) ? '&contactid='.urlencode($objcon->id) : '').'&percentage=-1';
274  //$out.=$langs->trans("AddAnAction").' ';
275  //$out.=img_picto($langs->trans("AddAnAction"),'filenew');
276  //$out.="</a>";
277  }
278 
279 
280  print '<div class="tabsAction">';
281 
282  if (isModEnabled('agenda')) {
283  if (!empty($user->rights->agenda->myactions->create) || !empty($user->rights->agenda->allactions->create)) {
284  print '<a class="butAction" href="'.DOL_URL_ROOT.'/comm/action/card.php?action=create'.$out.'">'.$langs->trans("AddAction").'</a>';
285  } else {
286  print '<a class="butActionRefused classfortooltip" href="#">'.$langs->trans("AddAction").'</a>';
287  }
288  }
289 
290  print '</div>';
291 
292  if (isModEnabled('agenda') && (!empty($user->rights->agenda->myactions->read) || !empty($user->rights->agenda->allactions->read))) {
293  $param = '&id='.$object->id.(!empty($socid) ? '&socid='.$socid : '');
294  if (!empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) {
295  $param .= '&contextpage='.urlencode($contextpage);
296  }
297  if ($limit > 0 && $limit != $conf->liste_limit) {
298  $param .= '&limit='.urlencode($limit);
299  }
300 
301 
302  //print load_fiche_titre($langs->trans("ActionsOnMyObject"), '', '');
303 
304  // List of all actions
305  $filters = array();
306  $filters['search_agenda_label'] = $search_agenda_label;
307 
308  // TODO Replace this with same code than into list.php
309  show_actions_done($conf, $langs, $db, $object, null, 0, $actioncode, '', $filters, $sortfield, $sortorder, $object->module);
310  }
311 }
312 
313 // End of page
314 llxFooter();
315 $db->close();
llxFooter
llxFooter()
Empty footer.
Definition: wrapper.php:73
GETPOST
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
Definition: functions.lib.php:484
dol_include_once
if(!function_exists('dol_getprefix')) dol_include_once($relpath, $classname='')
Make an include_once using default root and alternate root if it fails.
Definition: functions.lib.php:1033
$form
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
Definition: card.php:142
dol_banner_tab
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.
Definition: functions.lib.php:2046
$help_url
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:116
show_actions_done
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).
Definition: company.lib.php:1389
myobjectPrepareHead
myobjectPrepareHead($object)
Prepare array of tabs for MyObject.
Definition: mymodule_myobject.lib.php:30
dol_get_fiche_head
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='')
Show tabs of a record.
Definition: functions.lib.php:1822
dol_get_fiche_end
dol_get_fiche_end($notab=0)
Return tab footer of a card.
Definition: functions.lib.php:2018
isModEnabled
isModEnabled($module)
Is Dolibarr module enabled.
Definition: functions.lib.php:105
MyObject
Class for MyObject.
Definition: myobject.class.php:33
GETPOSTISSET
GETPOSTISSET($paramname)
Return true if we are in a context of submitting the parameter $paramname from a POST of a form.
Definition: functions.lib.php:386
ExtraFields
Class to manage standard extra fields.
Definition: extrafields.class.php:39
Form
Class to manage generation of HTML components Only common components must be here.
Definition: html.form.class.php:52
dol_print_object_info
dol_print_object_info($object, $usetable=0)
Show informations on an object TODO Move this into html.formother.
Definition: functions2.lib.php:205
setEventMessages
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='')
Set event messages in dol_events session object.
Definition: functions.lib.php:8137
accessforbidden
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program Calling this function terminate execution ...
Definition: security.lib.php:933
llxHeader
if(!defined('NOREQUIRESOC')) if(!defined('NOREQUIRETRAN')) if(!defined('NOCSRFCHECK')) if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) llxHeader()
Empty header.
Definition: wrapper.php:59