28require
'../main.inc.php';
29require_once DOL_DOCUMENT_ROOT.
'/core/lib/admin.lib.php';
30require_once DOL_DOCUMENT_ROOT.
'/cron/class/cronjob.class.php';
31require_once DOL_DOCUMENT_ROOT.
'/core/lib/cron.lib.php';
32require_once DOL_DOCUMENT_ROOT.
'/core/lib/date.lib.php';
35$langs->loadLangs(array(
"admin",
"cron",
"bills",
"members"));
37$action =
GETPOST(
'action',
'aZ09');
38$massaction =
GETPOST(
'massaction',
'alpha');
39$confirm =
GETPOST(
'confirm',
'alpha');
40$toselect =
GETPOST(
'toselect',
'array');
41$contextpage =
GETPOST(
'contextpage',
'aZ') ?
GETPOST(
'contextpage',
'aZ') :
'cronjoblist';
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');
49if (empty($page) || $page == -1) {
52$offset = $limit * $page;
56 $sortfield =
't.status,t.priority';
59 $sortorder =
'DESC,ASC';
61$optioncss =
GETPOST(
'optioncss',
'alpha');
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');
71$outputdir = $conf->cron->dir_output;
72if (empty($outputdir)) {
73 $outputdir = $conf->cronjob->dir_output;
75$diroutputmassaction = $outputdir.
'/temp/massgeneration/'.$user->id;
80$hookmanager->initHooks(array(
'cronjoblist'));
84$extrafields->fetch_name_optionals_label($object->table_element);
86$search_array_options = $extrafields->getOptionalsFromPost($object->table_element,
'',
'search_');
89if (!$user->rights->cron->read) {
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;
103if (
GETPOST(
'cancel',
'alpha')) {
104 $action =
'list'; $massaction =
'';
106if (!
GETPOST(
'confirmmassaction',
'alpha') && $massaction !=
'presend' && $massaction !=
'confirm_presend') {
110$parameters = array();
111$reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
116if (empty($reshook)) {
118 include DOL_DOCUMENT_ROOT.
'/core/actions_changeselectedfields.inc.php';
121 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
124 $search_lastresult =
'';
126 $search_array_options = array();
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')) {
134 if (!empty($search_label)) {
135 $filter[
't.label'] = $search_label;
139 if ($action ==
'confirm_delete' && $confirm ==
"yes" && $permissiontodelete) {
143 $result = $object->delete($user);
151 if ($action ==
'confirm_execute' && $confirm ==
"yes" && $permissiontoexecute) {
152 if (!empty($conf->global->CRON_KEY) && $conf->global->CRON_KEY != $securitykey) {
157 $job = $object->fetch($id);
161 $resrunjob = $object->run_jobs($user->login);
162 if ($resrunjob < 0) {
167 $res = $object->reprogram_jobs($user->login, $now);
169 if ($resrunjob >= 0) {
170 if ($object->lastresult >= 0) {
182 $param =
'&search_status='.urlencode($search_status);
183 if (!empty($contextpage) && $contextpage != $_SERVER[
"PHP_SELF"]) {
184 $param .=
'&contextpage='.urlencode($contextpage);
186 if ($limit > 0 && $limit != $conf->liste_limit) {
187 $param .=
'&limit='.((int) $limit);
190 $param .=
'&search_label='.urlencode($search_label);
192 if ($optioncss !=
'') {
193 $param .=
'&optioncss='.urlencode($optioncss);
196 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_param.tpl.php';
198 header(
"Location: ".DOL_URL_ROOT.
'/cron/list.php?'.$param.($sortfield ?
'&sortfield='.$sortfield :
'').($sortorder ?
'&sortorder='.$sortorder :
''));
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) {
210 foreach ($toselect as $id) {
211 $result = $tmpcron->fetch($id);
214 if ($massaction ==
'disable') {
215 $result = $tmpcron->setStatut(Cronjob::STATUS_DISABLED);
216 } elseif ($massaction ==
'enable') {
217 $result = $tmpcron->setStatut(Cronjob::STATUS_ENABLED);
235$form =
new Form($db);
238$pagetitle = $langs->trans(
"CronList");
242$TTestNotAllowed = array();
243$sqlTest =
'SELECT rowid, test FROM '.MAIN_DB_PREFIX.
'cronjob';
244$resultTest = $db->query($sqlTest);
246 while ($objTest = $db->fetch_object($resultTest)) {
249 $TTestNotAllowed[$objTest->rowid] = $objTest->rowid;
258$sql .=
" t.jobtype,";
260$sql .=
" t.command,";
261$sql .=
" t.classesname,";
262$sql .=
" t.objectname,";
263$sql .=
" t.methodename,";
265$sql .=
" t.md5params,";
266$sql .=
" t.module_name,";
267$sql .=
" t.priority,";
268$sql .=
" t.processing,";
269$sql .=
" t.datelastrun,";
270$sql .=
" t.datenextrun,";
271$sql .=
" t.dateend,";
272$sql .=
" t.datestart,";
273$sql .=
" t.lastresult,";
274$sql .=
" t.datelastresult,";
275$sql .=
" t.lastoutput,";
276$sql .=
" t.unitfrequency,";
277$sql .=
" t.frequency,";
279$sql .=
" t.fk_user_author,";
280$sql .=
" t.fk_user_mod,";
284$sql .=
" t.libname,";
286$sql .=
" FROM ".MAIN_DB_PREFIX.
"cronjob as t";
287$sql .=
" WHERE entity IN (0,".$conf->entity.
")";
288if (!empty($TTestNotAllowed)) {
289 $sql .=
' AND t.rowid NOT IN ('.$db->sanitize(implode(
',', $TTestNotAllowed)).
')';
291if ($search_status >= 0 && $search_status < 2 && $search_status !=
'') {
292 $sql .=
" AND t.status = ".(empty($search_status) ?
'0' :
'1');
294if ($search_lastresult !=
'') {
297if (GETPOSTISSET(
'search_processing')) {
298 $sql .=
" AND t.processing = ".((int) $search_processing);
301if (is_array($filter) && count($filter) > 0) {
302 foreach ($filter as $key => $value) {
303 $sql .=
" AND ".$key.
" LIKE '%".$db->escape($value).
"%'";
306if (!empty($search_module_name)) {
310include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_sql.tpl.php';
312$parameters = array();
313$reshook = $hookmanager->executeHooks(
'printFieldListWhere', $parameters);
314$sql .= $hookmanager->resPrint;
316$sql .= $db->order($sortfield, $sortorder);
318$nbtotalofrecords =
'';
320 $result = $db->query($sql);
321 $nbtotalofrecords = $db->num_rows($result);
322 if (($page * $limit) > $nbtotalofrecords) {
328$sql .= $db->plimit($limit + 1, $offset);
330$result = $db->query($sql);
335$num = $db->num_rows($result);
337$arrayofselected = is_array($toselect) ? $toselect : array();
340if (!empty($contextpage) && $contextpage != $_SERVER[
"PHP_SELF"]) {
341 $param .=
'&contextpage='.urlencode($contextpage);
343if ($limit > 0 && $limit != $conf->liste_limit) {
344 $param .=
'&limit='.((int) $limit);
347 $param .=
'&search_status='.urlencode($search_status);
350 $param .=
'&search_label='.urlencode($search_label);
352if ($search_module_name) {
353 $param .=
'&search_module_name='.urlencode($search_module_name);
355if ($search_lastresult) {
356 $param .=
'&search_lastresult='.urlencode($search_lastresult);
359 $param .=
'&mode='.urlencode($mode);
361if ($optioncss !=
'') {
362 $param .=
'&optioncss='.urlencode($optioncss);
365include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_param.tpl.php';
369if ($action ==
'execute') {
370 print $form->formconfirm($_SERVER[
'PHP_SELF'].
"?id=".$id.
'&securitykey='.$securitykey.$param, $langs->trans(
"CronExecute"), $langs->trans(
"CronConfirmExecute"),
"confirm_execute",
'',
'', 1);
373if ($action ==
'delete' && empty($toselect)) {
374 print $form->formconfirm($_SERVER[
'PHP_SELF'].
"?id=".$id.$param, $langs->trans(
"CronDelete"), $langs->trans(
"CronConfirmDelete"),
"confirm_delete",
'',
'', 1);
378$arrayofmassactions = array(
381 'enable'=>
img_picto(
'',
'check',
'class="pictofixedwidth"').$langs->trans(
"CronStatusActiveBtn"),
382 'disable'=>
img_picto(
'',
'uncheck',
'class="pictofixedwidth"').$langs->trans(
"CronStatusInactiveBtn"),
384if ($user->rights->cron->delete) {
385 $arrayofmassactions[
'predelete'] =
img_picto(
'',
'delete',
'class="pictofixedwidth"').$langs->trans(
"Delete");
387if (
GETPOST(
'nomassaction',
'int') || in_array($massaction, array(
'presend',
'predelete'))) {
388 $arrayofmassactions = array();
390$massactionbutton = $form->selectMassAction(
'', $arrayofmassactions);
392if ($mode ==
'modulesetup') {
393 $linkback =
'<a href="'.DOL_URL_ROOT.
'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToModuleList").
'</a>';
394 print
load_fiche_titre($langs->trans(
"CronSetup"), $linkback,
'title_setup');
400print
'<form method="POST" id="searchFormList" action="'.$_SERVER[
"PHP_SELF"].
'" name="search_form">'.
"\n";
401if ($optioncss !=
'') {
402 print
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
404print
'<input type="hidden" name="token" value="'.newToken().
'">';
405print
'<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
406print
'<input type="hidden" name="sortfield" value="'.$sortfield.
'">';
407print
'<input type="hidden" name="sortorder" value="'.$sortorder.
'">';
408print
'<input type="hidden" name="page" value="'.$page.
'">';
409print
'<input type="hidden" name="contextpage" value="'.$contextpage.
'">';
410print
'<input type="hidden" name="mode" value="'.$mode.
'">';
413$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);
416if ($mode ==
'modulesetup') {
423print_barre_liste($pagetitle, $page, $_SERVER[
"PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords, ($mode ==
'modulesetup' ?
'' :
'title_setup'), 0, $newcardbutton,
'', $limit);
426$topicmail =
"SendCronRef";
429$trackid =
'cron'.$object->id;
430include DOL_DOCUMENT_ROOT.
'/core/tpl/massactions_pre.tpl.php';
432$text = $langs->trans(
"HoursOnThisPageAreOnServerTZ").
' '.$stringcurrentdate.
'<br>';
433if (!empty($conf->global->CRON_WARNING_DELAY_HOURS)) {
434 $text .= $langs->trans(
"WarningCronDelayed", $conf->global->CRON_WARNING_DELAY_HOURS);
442$selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons(
'checkforselect', 1) :
'');
444print
'<div class="div-table-responsive">';
445print
'<table class="noborder">';
447print
'<tr class="liste_titre_filter">';
450 print
'<td class="liste_titre right">';
451 $searchpicto = $form->showFilterButtons();
455print
'<td class="liste_titre"> </td>';
456print
'<td class="liste_titre">';
457print
'<input type="text" class="flat" name="search_label" value="'.$search_label.
'">';
459print
'<td class="liste_titre"> </td>';
460print
'<td class="liste_titre"><input type="text" class="width50" name="search_module_name" value="'.$search_module_name.
'"></td>';
461print
'<td class="liste_titre"> </td>';
462print
'<td class="liste_titre"> </td>';
465print
'<td class="liste_titre"> </td>';
466print
'<td class="liste_titre"> </td>';
467print
'<td class="liste_titre"> </td>';
468print
'<td class="liste_titre center"><input type="text" class="width50" name="search_lastresult" value="'.$search_lastresult.
'"></td>';
469print
'<td class="liste_titre"> </td>';
470print
'<td class="liste_titre"> </td>';
471print
'<td class="liste_titre center">';
472print $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');
474print
'<td class="liste_titre"> </td>';
477 print
'<td class="liste_titre right">';
478 $searchpicto = $form->showFilterButtons();
484print
'<tr class="liste_titre">';
487 print_liste_field_titre($selectedfields, $_SERVER[
"PHP_SELF"],
"",
"", $param,
'', $sortfield, $sortorder,
'center maxwidthsearch ');
492print_liste_field_titre(
"CronModule", $_SERVER[
"PHP_SELF"],
"t.module_name",
"", $param,
'', $sortfield, $sortorder);
497print_liste_field_titre(
"CronNbRun", $_SERVER[
"PHP_SELF"],
"t.nbrun",
"", $param,
'', $sortfield, $sortorder,
'right tdoverflowmax50');
498print_liste_field_titre(
"CronDtLastLaunch", $_SERVER[
"PHP_SELF"],
"t.datelastrun",
"", $param,
'', $sortfield, $sortorder,
'center ');
499print_liste_field_titre(
"Duration", $_SERVER[
"PHP_SELF"],
"",
"", $param,
'', $sortfield, $sortorder,
'center ');
500print_liste_field_titre(
"CronLastResult", $_SERVER[
"PHP_SELF"],
"t.lastresult",
"", $param,
'', $sortfield, $sortorder,
'center ');
501print_liste_field_titre(
"CronLastOutput", $_SERVER[
"PHP_SELF"],
"t.lastoutput",
"", $param,
'', $sortfield, $sortorder);
502print_liste_field_titre(
"CronDtNextLaunch", $_SERVER[
"PHP_SELF"],
"t.datenextrun",
"", $param,
'', $sortfield, $sortorder,
'center ');
503print_liste_field_titre(
"Status", $_SERVER[
"PHP_SELF"],
"t.status,t.priority",
"", $param,
'', $sortfield, $sortorder,
'center ');
507 print_liste_field_titre($selectedfields, $_SERVER[
"PHP_SELF"],
"",
"", $param,
'', $sortfield, $sortorder,
'center maxwidthsearch ');
517 while ($i < min($num, $limit)) {
518 $obj = $db->fetch_object($result);
525 if (preg_match(
'/:(.*)$/', $obj->label, $reg)) {
526 $langs->load($reg[1]);
529 $object->id = $obj->rowid;
530 $object->ref = $obj->rowid;
531 $object->label = preg_replace(
'/:.*$/',
'', $obj->label);
532 $object->status = $obj->status;
533 $object->priority = $obj->priority;
534 $object->processing = $obj->processing;
535 $object->lastresult = $obj->lastresult;
536 $object->datestart = $db->jdate($obj->datestart);
537 $object->dateend = $db->jdate($obj->dateend);
538 $object->module_name = $obj->module_name;
539 $object->params = $obj->params;
540 $object->datelastrun = $db->jdate($obj->datelastrun);
541 $object->datenextrun = $db->jdate($obj->datenextrun);
543 $datelastrun = $db->jdate($obj->datelastrun);
544 $datelastresult = $db->jdate($obj->datelastresult);
546 print
'<tr class="oddeven">';
550 print
'<td class="nowraponall center">';
551 if ($massactionbutton || $massaction) {
553 if (in_array($obj->rowid, $arrayofselected)) {
556 print
'<input id="cb'.$obj->rowid.
'" class="flat checkforselect valignmiddle" type="checkbox" name="toselect[]" value="'.$obj->rowid.
'"'.($selected ?
' checked="checked"' :
'').
'>';
562 print
'<td class="nowraponall">';
563 print $object->getNomUrl(1);
567 print
'<td class="tdoverflowmax300">';
568 if (!empty($object->label)) {
569 $object->ref = $langs->trans($object->label);
570 print
'<span title="'.dol_escape_htmltag($langs->trans($object->label)).
'">'.$object->getNomUrl(0,
'', 1).
'</span>';
571 $object->ref = $obj->rowid;
578 print
'<td class="right">';
588 print
'<td class="nowraponall">';
589 if ($obj->jobtype ==
'method') {
590 $text = $langs->trans(
"CronClass");
591 $texttoshow = $langs->trans(
'CronModule').
': '.$obj->module_name.
'<br>';
592 $texttoshow .= $langs->trans(
'CronClass').
': '.$obj->classesname.
'<br>';
593 $texttoshow .= $langs->trans(
'CronObject').
': '.$obj->objectname.
'<br>';
594 $texttoshow .= $langs->trans(
'CronMethod').
': '.$obj->methodename;
595 $texttoshow .=
'<br>'.$langs->trans(
'CronArgs').
': '.$obj->params;
596 $texttoshow .=
'<br>'.$langs->trans(
'Comment').
': '.$langs->trans($obj->note);
597 } elseif ($obj->jobtype ==
'command') {
598 $text = $langs->trans(
'CronCommand');
599 $texttoshow = $langs->trans(
'CronCommand').
': '.
dol_trunc($obj->command);
600 $texttoshow .=
'<br>'.$langs->trans(
'CronArgs').
': '.$obj->params;
601 $texttoshow .=
'<br>'.$langs->trans(
'Comment').
': '.$langs->trans($obj->note);
603 print $form->textwithpicto($text, $texttoshow, 1);
607 if ($obj->unitfrequency ==
"60") {
608 $s = ($obj->frequency).
" ".($obj->frequency > 1 ? $langs->trans(
'MinuteShort') : $langs->trans(
'MinuteShort'));
609 } elseif ($obj->unitfrequency ==
"3600") {
610 $s = ($obj->frequency).
" ".($obj->frequency > 1 ? $langs->trans(
'HourShort') : $langs->trans(
'HourShort'));
611 } elseif ($obj->unitfrequency ==
"86400") {
612 $s = ($obj->frequency).
" ".($obj->frequency > 1 ? $langs->trans(
'DurationDays') : $langs->trans(
'DurationDay'));
613 } elseif ($obj->unitfrequency ==
"604800") {
614 $s = ($obj->frequency).
" ".($obj->frequency > 1 ? $langs->trans(
'DurationWeeks') : $langs->trans(
'DurationWeek'));
615 } elseif ($obj->unitfrequency ==
"2678400") {
616 $s = ($obj->frequency).
" ".($obj->frequency > 1 ? $langs->trans(
'DurationMonths') : $langs->trans(
'DurationMonth'));
618 print
'<td class="tdoverflowmax125 center" title="'.$s.
'">';
636 print
'<td class="right">';
637 if (!empty($obj->nbrun)) {
642 if (!empty($obj->maxrun)) {
643 print
' <span class="'.$langs->trans(
"Max").
'">/ '.
dol_escape_htmltag($obj->maxrun).
'</span>';
647 $datefromto = (empty($datelastrun) ?
'' :
dol_print_date($datelastrun,
'dayhoursec',
'tzserver')).
' - '.(empty($datelastresult) ?
'' :
dol_print_date($datelastresult,
'dayhoursec',
'tzserver'));
650 print
'<td class="center" title="'.dol_escape_htmltag($datefromto).
'">';
651 if (!empty($datelastrun)) {
657 print
'<td class="center nowraponall" title="'.dol_escape_htmltag($datefromto).
'">';
658 if (!empty($datelastresult) && ($datelastresult >= $datelastrun)) {
659 $nbseconds = max($datelastresult - $datelastrun, 1);
660 print $nbseconds.
' '.($nbseconds > 1 ? $langs->trans(
"SecondShort") : $langs->trans(
"SecondShort"));
665 print
'<td class="center tdlastresultcode" title="'.dol_escape_htmltag($obj->lastresult).
'">';
666 if ($obj->lastresult !=
'') {
667 if (empty($obj->lastresult)) {
668 print $obj->lastresult;
670 print
'<span class="error">'.dol_escape_htmltag(
dol_trunc($obj->lastresult)).
'</div>';
676 print
'<td class="small minwidth150">';
677 if (!empty($obj->lastoutput)) {
678 print
'<div class="twolinesmax classfortooltip" title="'.dol_escape_htmltag($obj->lastoutput, 1, 1).
'">';
685 print
'<td class="center minwidth100">';
686 if (!empty($obj->datenextrun)) {
687 $datenextrun = $db->jdate($obj->datenextrun);
688 if (empty($obj->status)) {
689 print
'<span class="opacitymedium">';
692 if ($obj->status == Cronjob::STATUS_ENABLED) {
693 if ($obj->maxrun && $obj->nbrun >= $obj->maxrun) {
695 } elseif ($datenextrun && $datenextrun < $now) {
699 if (empty($obj->status)) {
706 print
'<td class="center">';
707 print $object->getLibStatut(5);
710 print
'<td class="nowraponall right">';
712 $backtopage = urlencode($_SERVER[
"PHP_SELF"].
'?'.$param.($sortfield ?
'&sortfield='.$sortfield :
'').($sortorder ?
'&sortorder='.$sortorder :
''));
713 if ($user->rights->cron->create) {
714 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;
715 print
"&backtopage=".$backtopage.
"\" title=\"".
dol_escape_htmltag($langs->trans(
'Edit')).
"\">".
img_picto($langs->trans(
'Edit'),
'edit').
"</a> ";
717 if ($user->rights->cron->delete) {
718 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;
719 print
"\" title=\"".dol_escape_htmltag($langs->trans(
'CronDelete')).
"\">".
img_picto($langs->trans(
'CronDelete'),
'delete',
'',
false, 0, 0,
'',
'marginleftonly').
"</a> ";
721 print
"<a href=\"#\" title=\"".dol_escape_htmltag($langs->trans(
'NotEnoughPermissions')).
"\">".
img_picto($langs->trans(
'NotEnoughPermissions'),
'delete',
'',
false, 0, 0,
'',
'marginleftonly').
"</a> ";
723 if ($user->rights->cron->execute) {
724 if (!empty($obj->status)) {
725 print
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?id='.$obj->rowid.
'&action=execute';
726 print (empty($conf->global->CRON_KEY) ?
'' :
'&securitykey='.$conf->global->CRON_KEY);
727 print ($sortfield ?
'&sortfield='.$sortfield :
'');
728 print ($sortorder ?
'&sortorder='.$sortorder :
'');
729 print $param.
"\" title=\"".
dol_escape_htmltag($langs->trans(
'CronExecute')).
"\">".
img_picto($langs->trans(
'CronExecute'),
"play",
'',
false, 0, 0,
'',
'marginleftonly').
'</a>';
731 print
'<a href="#" class="cursordefault" title="'.dol_escape_htmltag($langs->trans(
'JobDisabled')).
'">'.
img_picto($langs->trans(
'JobDisabled'),
"playdisabled",
'',
false, 0, 0,
'',
'marginleftonly').
'</a>';
734 print
'<a href="#" class="cursornotallowed" title="'.dol_escape_htmltag($langs->trans(
'NotEnoughPermissions')).
'">'.
img_picto($langs->trans(
'NotEnoughPermissions'),
"playdisabled",
'',
false, 0, 0,
'',
'marginleftonly').
'</a>';
741 print
'<td class="nowraponall center">';
742 if ($massactionbutton || $massaction) {
744 if (in_array($obj->rowid, $arrayofselected)) {
747 print
'<input id="cb'.$obj->rowid.
'" class="flat checkforselect valignmiddle" type="checkbox" name="toselect[]" value="'.$obj->rowid.
'"'.($selected ?
' checked="checked"' :
'').
'>';
757 print
'<tr><td colspan="16" class="opacitymedium">'.$langs->trans(
'CronNoJobs').
'</td></tr>';
765if ($mode ==
'modulesetup') {
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
cronadmin_prepare_head()
Return array of tabs to used on pages to setup cron module.
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)
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.
verifCond($strToEvaluate)
Verify if condition in string is ok or not.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
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.