dolibarr  19.0.0-dev
list.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2012 Nicolas Villa aka Boyquotes http://informetic.fr
3  * Copyright (C) 2013 Florian Henry <florian.henry@open-concept.pro>
4  * Copyright (C) 2013-2021 Laurent Destailleur <eldy@users.sourceforge.net>
5  * Copyright (C) 2019 Frédéric France <frederic.france@netlogic.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
28 require '../main.inc.php';
29 require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
30 require_once DOL_DOCUMENT_ROOT.'/cron/class/cronjob.class.php';
31 require_once DOL_DOCUMENT_ROOT.'/core/lib/cron.lib.php';
32 require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
33 
34 // Load translation files required by the page
35 $langs->loadLangs(array("admin", "cron", "bills", "members"));
36 
37 $action = GETPOST('action', 'aZ09');
38 $massaction = GETPOST('massaction', 'alpha'); // The bulk action (combo box choice into lists)
39 $confirm = GETPOST('confirm', 'alpha');
40 $toselect = GETPOST('toselect', 'array'); // Array of ids of elements selected into a list
41 $contextpage = GETPOST('contextpage', 'aZ') ?GETPOST('contextpage', 'aZ') : 'cronjoblist'; // To manage different context of search
42 
43 $id = GETPOST('id', 'int');
44 
45 $limit = GETPOST('limit', 'int') ?GETPOST('limit', 'int') : $conf->liste_limit;
46 $sortfield = GETPOST('sortfield', 'aZ09comma');
47 $sortorder = GETPOST('sortorder', 'aZ09comma');
48 $page = GETPOSTISSET('pageplusone') ? (GETPOST('pageplusone') - 1) : GETPOST("page", 'int');
49 if (empty($page) || $page == -1) {
50  $page = 0;
51 } // If $page is not defined, or '' or -1
52 $offset = $limit * $page;
53 $pageprev = $page - 1;
54 $pagenext = $page + 1;
55 if (!$sortfield) {
56  $sortfield = 't.status,t.priority';
57 }
58 if (!$sortorder) {
59  $sortorder = 'DESC,ASC';
60 }
61 $optioncss = GETPOST('optioncss', 'alpha');
62 $mode = GETPOST('mode', 'aZ09');
63 //Search criteria
64 $search_status = (GETPOSTISSET('search_status') ?GETPOST('search_status', 'int') : GETPOST('status', 'int'));
65 $search_label = GETPOST("search_label", 'alpha');
66 $search_module_name = GETPOST("search_module_name", 'alpha');
67 $search_lastresult = GETPOST("search_lastresult", "alphawithlgt");
68 $search_processing = GETPOST("search_processing", "int");
69 $securitykey = GETPOST('securitykey', 'alpha');
70 
71 $outputdir = $conf->cron->dir_output;
72 if (empty($outputdir)) {
73  $outputdir = $conf->cronjob->dir_output;
74 }
75 $diroutputmassaction = $outputdir.'/temp/massgeneration/'.$user->id;
76 
77 $object = new Cronjob($db);
78 
79 // Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
80 $hookmanager->initHooks(array('cronjoblist'));
81 $extrafields = new ExtraFields($db);
82 
83 // fetch optionals attributes and labels
84 $extrafields->fetch_name_optionals_label($object->table_element);
85 
86 $search_array_options = $extrafields->getOptionalsFromPost($object->table_element, '', 'search_');
87 
88 // Security
89 if (!$user->rights->cron->read) {
91 }
92 
93 $permissiontoread = $user->rights->cron->read;
94 $permissiontoadd = $user->rights->cron->create ? $user->rights->cron->create : $user->rights->cron->write;
95 $permissiontodelete = $user->rights->cron->delete;
96 $permissiontoexecute = $user->rights->cron->execute;
97 
98 
99 /*
100  * Actions
101  */
102 
103 if (GETPOST('cancel', 'alpha')) {
104  $action = 'list'; $massaction = '';
105 }
106 if (!GETPOST('confirmmassaction', 'alpha') && $massaction != 'presend' && $massaction != 'confirm_presend') {
107  $massaction = '';
108 }
109 
110 $parameters = array();
111 $reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
112 if ($reshook < 0) {
113  setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
114 }
115 
116 if (empty($reshook)) {
117  // Selection of new fields
118  include DOL_DOCUMENT_ROOT.'/core/actions_changeselectedfields.inc.php';
119 
120  // Purge search criteria
121  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
122  $search_label = '';
123  $search_status = -1;
124  $search_lastresult = '';
125  $toselect = array();
126  $search_array_options = array();
127  }
128  if (GETPOST('button_removefilter_x', 'alpha') || GETPOST('button_removefilter.x', 'alpha') || GETPOST('button_removefilter', 'alpha')
129  || GETPOST('button_search_x', 'alpha') || GETPOST('button_search.x', 'alpha') || GETPOST('button_search', 'alpha')) {
130  $massaction = ''; // Protection to avoid mass action if we force a new search during a mass action confirmation
131  }
132 
133  $filter = array();
134  if (!empty($search_label)) {
135  $filter['t.label'] = $search_label;
136  }
137 
138  // Delete jobs
139  if ($action == 'confirm_delete' && $confirm == "yes" && $permissiontodelete) {
140  //Delete cron task
141  $object = new Cronjob($db);
142  $object->id = $id;
143  $result = $object->delete($user);
144 
145  if ($result < 0) {
146  setEventMessages($object->error, $object->errors, 'errors');
147  }
148  }
149 
150  // Execute jobs
151  if ($action == 'confirm_execute' && $confirm == "yes" && $permissiontoexecute) {
152  if (!empty($conf->global->CRON_KEY) && $conf->global->CRON_KEY != $securitykey) {
153  setEventMessages('Security key '.$securitykey.' is wrong', null, 'errors');
154  $action = '';
155  } else {
156  $object = new Cronjob($db);
157  $job = $object->fetch($id);
158 
159  $now = dol_now(); // Date we start
160 
161  $resrunjob = $object->run_jobs($user->login); // Return -1 if KO, 1 if OK
162  if ($resrunjob < 0) {
163  setEventMessages($object->error, $object->errors, 'errors');
164  }
165 
166  // Programm next run
167  $res = $object->reprogram_jobs($user->login, $now);
168  if ($res > 0) {
169  if ($resrunjob >= 0) { // We show the result of reprogram only if no error message already reported
170  if ($object->lastresult >= 0) {
171  setEventMessages($langs->trans("JobFinished"), null, 'mesgs');
172  } else {
173  setEventMessages($langs->trans("JobFinished"), null, 'errors');
174  }
175  }
176  $action = '';
177  } else {
178  setEventMessages($object->error, $object->errors, 'errors');
179  $action = '';
180  }
181 
182  $param = '&search_status='.urlencode($search_status);
183  if (!empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) {
184  $param .= '&contextpage='.urlencode($contextpage);
185  }
186  if ($limit > 0 && $limit != $conf->liste_limit) {
187  $param .= '&limit='.((int) $limit);
188  }
189  if ($search_label) {
190  $param .= '&search_label='.urlencode($search_label);
191  }
192  if ($optioncss != '') {
193  $param .= '&optioncss='.urlencode($optioncss);
194  }
195  // Add $param from extra fields
196  include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_param.tpl.php';
197 
198  header("Location: ".DOL_URL_ROOT.'/cron/list.php?'.$param.($sortfield ? '&sortfield='.$sortfield : '').($sortorder ? '&sortorder='.$sortorder : '')); // Make a redirect to avoid to run twice the job when using back
199  exit;
200  }
201  }
202 
203  // Mass actions
204  $objectclass = 'CronJob';
205  $objectlabel = 'CronJob';
206  $uploaddir = $conf->cron->dir_output;
207  include DOL_DOCUMENT_ROOT.'/core/actions_massactions.inc.php';
208  if ($massaction && $permissiontoadd) {
209  $tmpcron = new Cronjob($db);
210  foreach ($toselect as $id) {
211  $result = $tmpcron->fetch($id);
212  if ($result) {
213  $result = 0;
214  if ($massaction == 'disable') {
215  $result = $tmpcron->setStatut(Cronjob::STATUS_DISABLED);
216  } elseif ($massaction == 'enable') {
217  $result = $tmpcron->setStatut(Cronjob::STATUS_ENABLED);
218  }
219  //else dol_print_error($db, 'Bad value for massaction');
220  if ($result < 0) {
221  setEventMessages($tmpcron->error, $tmpcron->errors, 'errors');
222  }
223  } else {
224  $error++;
225  }
226  }
227  }
228 }
229 
230 
231 /*
232  * View
233  */
234 
235 $form = new Form($db);
236 $cronjob = new Cronjob($db);
237 
238 $pagetitle = $langs->trans("CronList");
239 
240 llxHeader('', $pagetitle);
241 
242 $sql = "SELECT";
243 $sql .= " t.rowid,";
244 $sql .= " t.tms,";
245 $sql .= " t.datec,";
246 $sql .= " t.jobtype,";
247 $sql .= " t.label,";
248 $sql .= " t.command,";
249 $sql .= " t.classesname,";
250 $sql .= " t.objectname,";
251 $sql .= " t.methodename,";
252 $sql .= " t.params,";
253 $sql .= " t.md5params,";
254 $sql .= " t.module_name,";
255 $sql .= " t.priority,";
256 $sql .= " t.processing,";
257 $sql .= " t.datelastrun,";
258 $sql .= " t.datenextrun,";
259 $sql .= " t.dateend,";
260 $sql .= " t.datestart,";
261 $sql .= " t.lastresult,";
262 $sql .= " t.datelastresult,";
263 $sql .= " t.lastoutput,";
264 $sql .= " t.unitfrequency,";
265 $sql .= " t.frequency,";
266 $sql .= " t.status,";
267 $sql .= " t.fk_user_author,";
268 $sql .= " t.fk_user_mod,";
269 $sql .= " t.note,";
270 $sql .= " t.maxrun,";
271 $sql .= " t.nbrun,";
272 $sql .= " t.libname,";
273 $sql .= " t.test";
274 $sql .= " FROM ".MAIN_DB_PREFIX."cronjob as t";
275 $sql .= " WHERE entity IN (0,".$conf->entity.")";
276 if ($search_status >= 0 && $search_status < 2 && $search_status != '') {
277  $sql .= " AND t.status = ".(empty($search_status) ? '0' : '1');
278 }
279 if ($search_lastresult != '') {
280  $sql .= natural_search("t.lastresult", $search_lastresult, 1);
281 }
282 if (GETPOSTISSET('search_processing')) {
283  $sql .= " AND t.processing = ".((int) $search_processing);
284 }
285 //Manage filter
286 if (is_array($filter) && count($filter) > 0) {
287  foreach ($filter as $key => $value) {
288  $sql .= " AND ".$key." LIKE '%".$db->escape($value)."%'";
289  }
290 }
291 if (!empty($search_module_name)) {
292  $sql .= natural_search("t.module_name", $search_module_name);
293 }
294 // Add where from extra fields
295 include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_sql.tpl.php';
296 // Add where from hooks
297 $parameters = array();
298 $reshook = $hookmanager->executeHooks('printFieldListWhere', $parameters); // Note that $action and $object may have been modified by hook
299 $sql .= $hookmanager->resPrint;
300 
301 $sql .= $db->order($sortfield, $sortorder);
302 
303 // Count total nb of records
304 $nbtotalofrecords = '';
305 if (!getDolGlobalInt('MAIN_DISABLE_FULL_SCANLIST')) {
306  $result = $db->query($sql);
307  $nbtotalofrecords = $db->num_rows($result);
308  if (($page * $limit) > $nbtotalofrecords) { // if total resultset is smaller then paging size (filtering), goto and load page 0
309  $page = 0;
310  $offset = 0;
311  }
312 }
313 
314 $sql .= $db->plimit($limit + 1, $offset);
315 
316 $result = $db->query($sql);
317 if (!$result) {
318  dol_print_error($db);
319 }
320 
321 $num = $db->num_rows($result);
322 
323 $arrayofselected = is_array($toselect) ? $toselect : array();
324 
325 $param = '';
326 if (!empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) {
327  $param .= '&contextpage='.urlencode($contextpage);
328 }
329 if ($limit > 0 && $limit != $conf->liste_limit) {
330  $param .= '&limit='.((int) $limit);
331 }
332 if ($search_status) {
333  $param .= '&search_status='.urlencode($search_status);
334 }
335 if ($search_label) {
336  $param .= '&search_label='.urlencode($search_label);
337 }
338 if ($search_module_name) {
339  $param .= '&search_module_name='.urlencode($search_module_name);
340 }
341 if ($search_lastresult) {
342  $param .= '&search_lastresult='.urlencode($search_lastresult);
343 }
344 if ($mode) {
345  $param .= '&mode='.urlencode($mode);
346 }
347 if ($optioncss != '') {
348  $param .= '&optioncss='.urlencode($optioncss);
349 }
350 // Add $param from extra fields
351 include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_param.tpl.php';
352 
353 $stringcurrentdate = $langs->trans("CurrentHour").': '.dol_print_date(dol_now(), 'dayhour');
354 
355 if ($action == 'execute') {
356  print $form->formconfirm($_SERVER['PHP_SELF']."?id=".$id.'&securitykey='.$securitykey.$param, $langs->trans("CronExecute"), $langs->trans("CronConfirmExecute"), "confirm_execute", '', '', 1);
357 }
358 
359 if ($action == 'delete' && empty($toselect)) { // Used when we make a delete on 1 line (not used for mass delete)
360  print $form->formconfirm($_SERVER['PHP_SELF']."?id=".$id.$param, $langs->trans("CronDelete"), $langs->trans("CronConfirmDelete"), "confirm_delete", '', '', 1);
361 }
362 
363 // List of mass actions available
364 $arrayofmassactions = array(
365 //'presend'=>img_picto('', 'email', 'class="pictofixedwidth"').$langs->trans("SendByMail"),
366 //'builddoc'=>img_picto('', 'pdf', 'class="pictofixedwidth"').$langs->trans("PDFMerge"),
367  'enable'=>img_picto('', 'check', 'class="pictofixedwidth"').$langs->trans("CronStatusActiveBtn"),
368  'disable'=>img_picto('', 'uncheck', 'class="pictofixedwidth"').$langs->trans("CronStatusInactiveBtn"),
369 );
370 if ($user->rights->cron->delete) {
371  $arrayofmassactions['predelete'] = img_picto('', 'delete', 'class="pictofixedwidth"').$langs->trans("Delete");
372 }
373 if (GETPOST('nomassaction', 'int') || in_array($massaction, array('presend', 'predelete'))) {
374  $arrayofmassactions = array();
375 }
376 $massactionbutton = $form->selectMassAction('', $arrayofmassactions);
377 
378 if ($mode == 'modulesetup') {
379  $linkback = '<a href="'.DOL_URL_ROOT.'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans("BackToModuleList").'</a>';
380  print load_fiche_titre($langs->trans("CronSetup"), $linkback, 'title_setup');
381 
382  // Configuration header
383  $head = cronadmin_prepare_head();
384 }
385 
386 print '<form method="POST" id="searchFormList" action="'.$_SERVER["PHP_SELF"].'" name="search_form">'."\n";
387 if ($optioncss != '') {
388  print '<input type="hidden" name="optioncss" value="'.$optioncss.'">';
389 }
390 print '<input type="hidden" name="token" value="'.newToken().'">';
391 print '<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
392 print '<input type="hidden" name="sortfield" value="'.$sortfield.'">';
393 print '<input type="hidden" name="sortorder" value="'.$sortorder.'">';
394 print '<input type="hidden" name="page" value="'.$page.'">';
395 print '<input type="hidden" name="contextpage" value="'.$contextpage.'">';
396 print '<input type="hidden" name="mode" value="'.$mode.'">';
397 
398 // Line with explanation and button new
399 $newcardbutton = dolGetButtonTitle($langs->trans('New'), $langs->trans('CronCreateJob'), 'fa fa-plus-circle', DOL_URL_ROOT.'/cron/card.php?action=create&backtopage='.urlencode($_SERVER['PHP_SELF'].'?mode=modulesetup'), '', $user->rights->cron->create);
400 
401 
402 if ($mode == 'modulesetup') {
403  print dol_get_fiche_head($head, 'jobs', $langs->trans("Module2300Name"), -1, 'cron');
404 
405  //print '<span class="opacitymedium">'.$langs->trans('CronInfo').'</span><br>';
406 }
407 
408 
409 print_barre_liste($pagetitle, $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords, ($mode == 'modulesetup' ? '' : 'title_setup'), 0, $newcardbutton, '', $limit);
410 
411 // Add code for pre mass action (confirmation or email presend form)
412 $topicmail = "SendCronRef";
413 $modelmail = "cron";
414 $objecttmp = new Cronjob($db);
415 $trackid = 'cron'.$object->id;
416 include DOL_DOCUMENT_ROOT.'/core/tpl/massactions_pre.tpl.php';
417 
418 $text = $langs->trans("HoursOnThisPageAreOnServerTZ").' '.$stringcurrentdate.'<br>';
419 if (!empty($conf->global->CRON_WARNING_DELAY_HOURS)) {
420  $text .= $langs->trans("WarningCronDelayed", $conf->global->CRON_WARNING_DELAY_HOURS);
421 }
422 print info_admin($text);
423 //print '<br>';
424 
425 //$varpage = empty($contextpage) ? $_SERVER["PHP_SELF"] : $contextpage;
426 $selectedfields = '';
427 //$selectedfields=$form->multiSelectArrayWithCheckbox('selectedfields', $arrayfields, $varpage); // This also change content of $arrayfields
428 $selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons('checkforselect', 1) : '');
429 
430 print '<div class="div-table-responsive">';
431 print '<table class="noborder">';
432 
433 print '<tr class="liste_titre_filter">';
434 print '<td class="liste_titre">&nbsp;</td>';
435 print '<td class="liste_titre">';
436 print '<input type="text" class="flat" name="search_label" value="'.$search_label.'">';
437 print '</td>';
438 print '<td class="liste_titre">&nbsp;</td>';
439 print '<td class="liste_titre"><input type="text" class="width50" name="search_module_name" value="'.$search_module_name.'"></td>';
440 print '<td class="liste_titre">&nbsp;</td>';
441 print '<td class="liste_titre">&nbsp;</td>';
442 //print '<td class="liste_titre">&nbsp;</td>';
443 //print '<td class="liste_titre">&nbsp;</td>';
444 print '<td class="liste_titre">&nbsp;</td>';
445 print '<td class="liste_titre">&nbsp;</td>';
446 print '<td class="liste_titre">&nbsp;</td>';
447 print '<td class="liste_titre center"><input type="text" class="width50" name="search_lastresult" value="'.$search_lastresult.'"></td>';
448 print '<td class="liste_titre">&nbsp;</td>';
449 print '<td class="liste_titre">&nbsp;</td>';
450 print '<td class="liste_titre center">';
451 print $form->selectarray('search_status', array('0'=>$langs->trans("Disabled"), '1'=>$langs->trans("Scheduled")), $search_status, 1, 0, 0, '', 0, 0, 0, '', 'search_status width100 onrightofpage');
452 print '</td><td class="liste_titre right">';
453 $searchpicto = $form->showFilterButtons();
454 print $searchpicto;
455 print '</td>';
456 print '</tr>';
457 
458 print '<tr class="liste_titre">';
459 print_liste_field_titre("Ref", $_SERVER["PHP_SELF"], "t.rowid", "", $param, '', $sortfield, $sortorder);
460 print_liste_field_titre("CronLabel", $_SERVER["PHP_SELF"], "t.label", "", $param, '', $sortfield, $sortorder);
461 print_liste_field_titre("Prority", $_SERVER["PHP_SELF"], "t.priority", "", $param, '', $sortfield, $sortorder);
462 print_liste_field_titre("CronModule", $_SERVER["PHP_SELF"], "t.module_name", "", $param, '', $sortfield, $sortorder);
463 print_liste_field_titre("CronType", '', '', "", $param, '', $sortfield, $sortorder, 'tdoverflowmax100 ');
464 print_liste_field_titre("CronFrequency", '', "", "", $param, '', $sortfield, $sortorder);
465 //print_liste_field_titre("CronDtStart", $_SERVER["PHP_SELF"], "t.datestart", "", $param, 'align="center"', $sortfield, $sortorder);
466 //print_liste_field_titre("CronDtEnd", $_SERVER["PHP_SELF"], "t.dateend", "", $param, 'align="center"', $sortfield, $sortorder);
467 print_liste_field_titre("CronNbRun", $_SERVER["PHP_SELF"], "t.nbrun", "", $param, '', $sortfield, $sortorder, 'right tdoverflowmax50');
468 print_liste_field_titre("CronDtLastLaunch", $_SERVER["PHP_SELF"], "t.datelastrun", "", $param, '', $sortfield, $sortorder, 'center ');
469 print_liste_field_titre("Duration", $_SERVER["PHP_SELF"], "", "", $param, '', $sortfield, $sortorder, 'center ');
470 print_liste_field_titre("CronLastResult", $_SERVER["PHP_SELF"], "t.lastresult", "", $param, '', $sortfield, $sortorder, 'center ');
471 print_liste_field_titre("CronLastOutput", $_SERVER["PHP_SELF"], "t.lastoutput", "", $param, '', $sortfield, $sortorder);
472 print_liste_field_titre("CronDtNextLaunch", $_SERVER["PHP_SELF"], "t.datenextrun", "", $param, '', $sortfield, $sortorder, 'center ');
473 print_liste_field_titre("Status", $_SERVER["PHP_SELF"], "t.status,t.priority", "", $param, '', $sortfield, $sortorder, 'center ');
474 print_liste_field_titre($selectedfields, $_SERVER["PHP_SELF"], "", "", $param, '', $sortfield, $sortorder, 'center maxwidthsearch ');
475 print "</tr>\n";
476 
477 
478 if ($num > 0) {
479  // Loop on each job
480  $now = dol_now();
481  $i = 0;
482 
483  while ($i < min($num, $limit)) {
484  $obj = $db->fetch_object($result);
485 
486  if (empty($obj)) {
487  break;
488  }
489 
490  if (isset($obj->test)) {
491  $veriftest = verifCond($obj->test);
492  if (!$veriftest) {
493  continue; // Discard line with test = false
494  }
495  }
496 
497  $reg = array();
498  if (preg_match('/:(.*)$/', $obj->label, $reg)) {
499  $langs->load($reg[1]);
500  }
501 
502  $object->id = $obj->rowid;
503  $object->ref = $obj->rowid;
504  $object->label = preg_replace('/:.*$/', '', $obj->label);
505  $object->status = $obj->status;
506  $object->priority = $obj->priority;
507  $object->processing = $obj->processing;
508  $object->lastresult = $obj->lastresult;
509  $object->datestart = $db->jdate($obj->datestart);
510  $object->dateend = $db->jdate($obj->dateend);
511  $object->module_name = $obj->module_name;
512  $object->params = $obj->params;
513  $object->datelastrun = $db->jdate($obj->datelastrun);
514  $object->datenextrun = $db->jdate($obj->datenextrun);
515 
516  $datelastrun = $db->jdate($obj->datelastrun);
517  $datelastresult = $db->jdate($obj->datelastresult);
518 
519  print '<tr class="oddeven">';
520 
521  // Ref
522  print '<td class="nowraponall">';
523  print $object->getNomUrl(1);
524  print '</td>';
525 
526  // Label
527  print '<td class="tdoverflowmax300">';
528  if (!empty($object->label)) {
529  $object->ref = $langs->trans($object->label);
530  print '<span title="'.dol_escape_htmltag($langs->trans($object->label)).'">'.$object->getNomUrl(0, '', 1).'</span>';
531  $object->ref = $obj->rowid;
532  } else {
533  //print $langs->trans('CronNone');
534  }
535  print '</td>';
536 
537  // Priority
538  print '<td class="right">';
539  print dol_escape_htmltag($object->priority);
540  print '</td>';
541 
542  // Module
543  print '<td>';
544  print dol_escape_htmltag($object->module_name);
545  print '</td>';
546 
547  // Class/Method
548  print '<td class="nowraponall">';
549  if ($obj->jobtype == 'method') {
550  $text = $langs->trans("CronClass");
551  $texttoshow = $langs->trans('CronModule').': '.$obj->module_name.'<br>';
552  $texttoshow .= $langs->trans('CronClass').': '.$obj->classesname.'<br>';
553  $texttoshow .= $langs->trans('CronObject').': '.$obj->objectname.'<br>';
554  $texttoshow .= $langs->trans('CronMethod').': '.$obj->methodename;
555  $texttoshow .= '<br>'.$langs->trans('CronArgs').': '.$obj->params;
556  $texttoshow .= '<br>'.$langs->trans('Comment').': '.$langs->trans($obj->note);
557  } elseif ($obj->jobtype == 'command') {
558  $text = $langs->trans('CronCommand');
559  $texttoshow = $langs->trans('CronCommand').': '.dol_trunc($obj->command);
560  $texttoshow .= '<br>'.$langs->trans('CronArgs').': '.$obj->params;
561  $texttoshow .= '<br>'.$langs->trans('Comment').': '.$langs->trans($obj->note);
562  }
563  print $form->textwithpicto($text, $texttoshow, 1);
564  print '</td>';
565 
566  $s = '';
567  if ($obj->unitfrequency == "60") {
568  $s = ($obj->frequency)." ".($obj->frequency > 1 ? $langs->trans('Minutes') : $langs->trans('Minute'));
569  } elseif ($obj->unitfrequency == "3600") {
570  $s = ($obj->frequency)." ".($obj->frequency > 1 ? $langs->trans('Hours') : $langs->trans('Hour'));
571  } elseif ($obj->unitfrequency == "86400") {
572  $s = ($obj->frequency)." ".($obj->frequency > 1 ? $langs->trans('Days') : $langs->trans('Day'));
573  } elseif ($obj->unitfrequency == "604800") {
574  $s = ($obj->frequency)." ".($obj->frequency > 1 ? $langs->trans('Weeks') : $langs->trans('Week'));
575  } elseif ($obj->unitfrequency == "2678400") {
576  $s = ($obj->frequency)." ".($obj->frequency > 1 ? $langs->trans('Months') : $langs->trans('Month'));
577  }
578  print '<td class="tdoverflowmax125" title="'.$s.'">';
579  print $s;
580  print '</td>';
581 
582  /*
583  print '<td class="center">';
584  if (!empty($obj->datestart)) {
585  print dol_print_date($db->jdate($obj->datestart), 'dayhour', 'tzserver');
586  }
587  print '</td>';
588 
589  print '<td class="center">';
590  if (!empty($obj->dateend)) {
591  print dol_print_date($db->jdate($obj->dateend), 'dayhour', 'tzserver');
592  }
593  print '</td>';
594  */
595 
596  print '<td class="right">';
597  if (!empty($obj->nbrun)) {
598  print dol_escape_htmltag($obj->nbrun);
599  } else {
600  print '0';
601  }
602  if (!empty($obj->maxrun)) {
603  print ' <span class="'.$langs->trans("Max").'">/ '.dol_escape_htmltag($obj->maxrun).'</span>';
604  }
605  print '</td>';
606 
607  $datefromto = (empty($datelastrun) ? '' : dol_print_date($datelastrun, 'dayhoursec', 'tzserver')).' - '.(empty($datelastresult) ? '' : dol_print_date($datelastresult, 'dayhoursec', 'tzserver'));
608 
609  // Date start last run
610  print '<td class="center" title="'.dol_escape_htmltag($datefromto).'">';
611  if (!empty($datelastrun)) {
612  print dol_print_date($datelastrun, 'dayhoursec', 'tzserver');
613  }
614  print '</td>';
615 
616  // Duration
617  print '<td class="center" title="'.dol_escape_htmltag($datefromto).'">';
618  if (!empty($datelastresult) && ($datelastresult >= $datelastrun)) {
619  print convertSecondToTime(max($datelastresult - $datelastrun, 1), 'allhourminsec');
620  //print '<br>'.($datelastresult - $datelastrun).' '.$langs->trans("seconds");
621  }
622  print '</td>';
623 
624  // Return code of last run
625  print '<td class="center tdlastresultcode" title="'.dol_escape_htmltag($obj->lastresult).'">';
626  if ($obj->lastresult != '') {
627  if (empty($obj->lastresult)) {
628  print $obj->lastresult; // Print '0'
629  } else {
630  print '<span class="error">'.dol_escape_htmltag(dol_trunc($obj->lastresult)).'</div>';
631  }
632  }
633  print '</td>';
634 
635  // Output of last run
636  print '<td class="small minwidth150">';
637  if (!empty($obj->lastoutput)) {
638  print '<div class="twolinesmax classfortooltip" title="'.dol_escape_htmltag($obj->lastoutput, 1, 1).'">';
639  print dol_trunc(dolGetFirstLineOfText($obj->lastoutput, 2), 100);
640  print '</div>';
641  }
642  print '</td>';
643 
644  // Next run
645  print '<td class="center minwidth100">';
646  if (!empty($obj->datenextrun)) {
647  $datenextrun = $db->jdate($obj->datenextrun);
648  if (empty($obj->status)) {
649  print '<span class="opacitymedium">';
650  }
651  print dol_print_date($datenextrun, 'dayhoursec');
652  if ($obj->status == Cronjob::STATUS_ENABLED) {
653  if ($obj->maxrun && $obj->nbrun >= $obj->maxrun) {
654  print img_warning($langs->trans("MaxRunReached"));
655  } elseif ($datenextrun && $datenextrun < $now) {
656  print img_warning($langs->trans("Late"));
657  }
658  }
659  if (empty($obj->status)) {
660  print '</span>';
661  }
662  }
663  print '</td>';
664 
665  // Status
666  print '<td class="center">';
667  print $object->getLibStatut(5);
668  print '</td>';
669 
670  print '<td class="nowraponall right">';
671 
672  $backtopage = urlencode($_SERVER["PHP_SELF"].'?'.$param.($sortfield ? '&sortfield='.$sortfield : '').($sortorder ? '&sortorder='.$sortorder : ''));
673  if ($user->rights->cron->create) {
674  print '<a class="editfielda" href="'.DOL_URL_ROOT."/cron/card.php?id=".$obj->rowid.'&action=edit&token='.newToken().($sortfield ? '&sortfield='.$sortfield : '').($sortorder ? '&sortorder='.$sortorder : '').$param;
675  print "&backtopage=".$backtopage."\" title=\"".dol_escape_htmltag($langs->trans('Edit'))."\">".img_picto($langs->trans('Edit'), 'edit')."</a> &nbsp;";
676  }
677  if ($user->rights->cron->delete) {
678  print '<a class="reposition" href="'.$_SERVER["PHP_SELF"]."?id=".$obj->rowid.'&action=delete&token='.newToken().($page ? '&page='.$page : '').($sortfield ? '&sortfield='.$sortfield : '').($sortorder ? '&sortorder='.$sortorder : '').$param;
679  print "\" title=\"".dol_escape_htmltag($langs->trans('CronDelete'))."\">".img_picto($langs->trans('CronDelete'), 'delete', '', false, 0, 0, '', 'marginleftonly')."</a> &nbsp; ";
680  } else {
681  print "<a href=\"#\" title=\"".dol_escape_htmltag($langs->trans('NotEnoughPermissions'))."\">".img_picto($langs->trans('NotEnoughPermissions'), 'delete', '', false, 0, 0, '', 'marginleftonly')."</a> &nbsp; ";
682  }
683  if ($user->rights->cron->execute) {
684  if (!empty($obj->status)) {
685  print '<a class="reposition" href="'.$_SERVER["PHP_SELF"].'?id='.$obj->rowid.'&action=execute';
686  print (empty($conf->global->CRON_KEY) ? '' : '&securitykey='.$conf->global->CRON_KEY);
687  print ($sortfield ? '&sortfield='.$sortfield : '');
688  print ($sortorder ? '&sortorder='.$sortorder : '');
689  print $param."\" title=\"".dol_escape_htmltag($langs->trans('CronExecute'))."\">".img_picto($langs->trans('CronExecute'), "play", '', false, 0, 0, '', 'marginleftonly').'</a>';
690  } else {
691  print '<a href="#" class="cursordefault" title="'.dol_escape_htmltag($langs->trans('JobDisabled')).'">'.img_picto($langs->trans('JobDisabled'), "playdisabled", '', false, 0, 0, '', 'marginleftonly').'</a>';
692  }
693  } else {
694  print '<a href="#" class="cursornotallowed" title="'.dol_escape_htmltag($langs->trans('NotEnoughPermissions')).'">'.img_picto($langs->trans('NotEnoughPermissions'), "playdisabled", '', false, 0, 0, '', 'marginleftonly').'</a>';
695  }
696  if ($massactionbutton || $massaction) { // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined
697  $selected = 0;
698  if (in_array($obj->rowid, $arrayofselected)) {
699  $selected = 1;
700  }
701  print ' &nbsp; <input id="cb'.$obj->rowid.'" class="flat checkforselect valignmiddle" type="checkbox" name="toselect[]" value="'.$obj->rowid.'"'.($selected ? ' checked="checked"' : '').'>';
702  }
703  print '</td>';
704 
705  print '</tr>';
706 
707  $i++;
708  }
709 } else {
710  print '<tr><td colspan="15" class="opacitymedium">'.$langs->trans('CronNoJobs').'</td></tr>';
711 }
712 
713 print '</table>';
714 print '</div>';
715 
716 print '</from>';
717 
718 if ($mode == 'modulesetup') {
719  print dol_get_fiche_end();
720 }
721 
722 
723 llxFooter();
724 
725 $db->close();
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
Cron Job class.
Class to manage standard extra fields.
Class to manage generation of HTML components Only common components must be here.
if(isModEnabled('facture') && $user->hasRight('facture', 'lire')) if((isModEnabled('fournisseur') &&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD) && $user->hasRight("fournisseur", "facture", "lire"))||(isModEnabled('supplier_invoice') && $user->hasRight("supplier_invoice", "lire"))) if(isModEnabled('don') && $user->hasRight('don', 'lire')) if(isModEnabled('tax') &&!empty($user->rights->tax->charges->lire)) if(isModEnabled('facture') &&isModEnabled('commande') && $user->hasRight("commande", "lire") &&empty($conf->global->WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER)) $sql
Social contributions to pay.
Definition: index.php:746
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
Definition: card.php:143
cronadmin_prepare_head()
Return array of tabs to used on pages to setup cron module.
Definition: cron.lib.php:31
convertSecondToTime($iSecond, $format='all', $lengthOfDay=86400, $lengthOfWeek=7)
Return, in clear text, value of a number of seconds in days, hours and minutes.
Definition: date.lib.php:239
load_fiche_titre($titre, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
img_warning($titlealt='default', $moreatt='', $morecss='pictowarning')
Show warning logo.
dolGetFirstLineOfText($text, $nboflines=1, $charset='UTF-8')
Return first line of text.
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.
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
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.
natural_search($fields, $value, $mode=0, $nofirstand=0)
Generate natural SQL search string for a criteria (this criteria can be tested on one or several fiel...
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs='', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
dol_now($mode='auto')
Return date for now.
getDolGlobalInt($key, $default=0)
Return dolibarr global constant int value.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
newToken()
Return the value of token currently saved into session with name 'newtoken'.
print_liste_field_titre($name, $file="", $field="", $begin="", $moreparam="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $tooltip="", $forcenowrapcolumntitle=0)
Show title line of an array.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
info_admin($text, $infoonimgalt=0, $nodiv=0, $admin='1', $morecss='hideonsmartphone', $textfordropdown='')
Show information for admin users or standard users.
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.
dol_trunc($string, $size=40, $trunc='right', $stringencoding='UTF-8', $nodot=0, $display=0)
Truncate a string to a particular length adding '…' if string larger than length.
GETPOSTISSET($paramname)
Return true if we are in a context of submitting the parameter $paramname from a POST of a form.
verifCond($strToEvaluate)
Verify if condition in string is ok or not.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.