782 lines
30 KiB
PHP
782 lines
30 KiB
PHP
<?php
|
|
/* Copyright (C) 2012 Nicolas Villa aka Boyquotes http://informetic.fr
|
|
* Copyright (C) 2013 Florian Henry <florian.henry@open-concept.pro>
|
|
* Copyright (C) 2013-2021 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
* Copyright (C) 2019-2024 Frédéric France <frederic.france@free.fr>
|
|
* Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
|
|
* Copyright (C) 2024 Alexandre Spangaro <alexandre@inovea-conseil.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/**
|
|
* \file htdocs/cron/list.php
|
|
* \ingroup cron
|
|
* \brief Lists Jobs
|
|
*/
|
|
|
|
// Load Dolibarr environment
|
|
require '../main.inc.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/cron/class/cronjob.class.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/cron.lib.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
|
|
|
|
// Load translation files required by the page
|
|
$langs->loadLangs(array("admin", "cron", "bills", "members"));
|
|
|
|
$action = GETPOST('action', 'aZ09');
|
|
$massaction = GETPOST('massaction', 'alpha'); // The bulk action (combo box choice into lists)
|
|
$confirm = GETPOST('confirm', 'alpha');
|
|
$toselect = GETPOST('toselect', 'array'); // Array of ids of elements selected into a list
|
|
$contextpage = GETPOST('contextpage', 'aZ') ? GETPOST('contextpage', 'aZ') : 'cronjoblist'; // To manage different context of search
|
|
|
|
$id = GETPOSTINT('id');
|
|
|
|
$limit = GETPOSTINT('limit') ? GETPOSTINT('limit') : $conf->liste_limit;
|
|
$sortfield = GETPOST('sortfield', 'aZ09comma');
|
|
$sortorder = GETPOST('sortorder', 'aZ09comma');
|
|
$page = GETPOSTISSET('pageplusone') ? (GETPOSTINT('pageplusone') - 1) : GETPOSTINT("page");
|
|
if (empty($page) || $page == -1) {
|
|
$page = 0;
|
|
} // If $page is not defined, or '' or -1
|
|
$offset = $limit * $page;
|
|
$pageprev = $page - 1;
|
|
$pagenext = $page + 1;
|
|
if (!$sortfield) {
|
|
$sortfield = 't.priority,t.status';
|
|
}
|
|
if (!$sortorder) {
|
|
$sortorder = 'ASC,DESC';
|
|
}
|
|
$optioncss = GETPOST('optioncss', 'alpha');
|
|
$mode = GETPOST('mode', 'aZ09');
|
|
//Search criteria
|
|
$search_status = GETPOST('search_status', 'intcomma');
|
|
$search_label = GETPOST("search_label", 'alpha');
|
|
$search_module_name = GETPOST("search_module_name", 'alpha');
|
|
$search_lastresult = GETPOST("search_lastresult", "alphawithlgt");
|
|
$search_processing = GETPOST("search_processing", 'int');
|
|
$securitykey = GETPOST('securitykey', 'alpha');
|
|
|
|
$outputdir = $conf->cron->dir_output;
|
|
if (empty($outputdir)) {
|
|
$outputdir = $conf->cronjob->dir_output;
|
|
}
|
|
$diroutputmassaction = $outputdir.'/temp/massgeneration/'.$user->id;
|
|
|
|
$object = new Cronjob($db);
|
|
|
|
// Initialize a technical object to manage hooks of page. Note that conf->hooks_modules contains an array of hook context
|
|
$hookmanager->initHooks(array('cronjoblist'));
|
|
$extrafields = new ExtraFields($db);
|
|
|
|
// fetch optionals attributes and labels
|
|
$extrafields->fetch_name_optionals_label($object->table_element);
|
|
|
|
$search_array_options = $extrafields->getOptionalsFromPost($object->table_element, '', 'search_');
|
|
|
|
// Security
|
|
if (!$user->hasRight('cron', 'read')) {
|
|
accessforbidden();
|
|
}
|
|
|
|
$permissiontoread = $user->hasRight('cron', 'read');
|
|
$permissiontoadd = $user->hasRight('cron', 'create') ? $user->hasRight('cron', 'create') : $user->hasRight('cron', 'write');
|
|
$permissiontodelete = $user->hasRight('cron', 'delete');
|
|
$permissiontoexecute = $user->hasRight('cron', 'execute');
|
|
|
|
|
|
/*
|
|
* Actions
|
|
*/
|
|
|
|
if (GETPOST('cancel', 'alpha')) {
|
|
$action = 'list';
|
|
$massaction = '';
|
|
}
|
|
if (!GETPOST('confirmmassaction', 'alpha') && $massaction != 'presend' && $massaction != 'confirm_presend') {
|
|
$massaction = '';
|
|
}
|
|
|
|
$parameters = array();
|
|
$reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
|
|
if ($reshook < 0) {
|
|
setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
|
|
}
|
|
|
|
if (empty($reshook)) {
|
|
// Selection of new fields
|
|
include DOL_DOCUMENT_ROOT.'/core/actions_changeselectedfields.inc.php';
|
|
|
|
// Purge search criteria
|
|
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
|
|
$search_label = '';
|
|
$search_status = -1;
|
|
$search_lastresult = '';
|
|
$toselect = array();
|
|
$search_array_options = array();
|
|
}
|
|
if (GETPOST('button_removefilter_x', 'alpha') || GETPOST('button_removefilter.x', 'alpha') || GETPOST('button_removefilter', 'alpha')
|
|
|| GETPOST('button_search_x', 'alpha') || GETPOST('button_search.x', 'alpha') || GETPOST('button_search', 'alpha')) {
|
|
$massaction = ''; // Protection to avoid mass action if we force a new search during a mass action confirmation
|
|
}
|
|
|
|
$filter = array();
|
|
if (!empty($search_label)) {
|
|
$filter['t.label'] = $search_label;
|
|
}
|
|
|
|
// Delete jobs
|
|
if ($action == 'confirm_delete' && $confirm == "yes" && $permissiontodelete) {
|
|
//Delete cron task
|
|
$object = new Cronjob($db);
|
|
$object->id = $id;
|
|
$result = $object->delete($user);
|
|
|
|
if ($result < 0) {
|
|
setEventMessages($object->error, $object->errors, 'errors');
|
|
}
|
|
}
|
|
|
|
// Execute jobs
|
|
if ($action == 'confirm_execute' && $confirm == "yes" && $permissiontoexecute) {
|
|
if (getDolGlobalString('CRON_KEY') && $conf->global->CRON_KEY != $securitykey) {
|
|
setEventMessages('Security key '.$securitykey.' is wrong', null, 'errors');
|
|
$action = '';
|
|
} else {
|
|
$object = new Cronjob($db);
|
|
$job = $object->fetch($id);
|
|
|
|
$now = dol_now(); // Date we start
|
|
|
|
$resrunjob = $object->run_jobs($user->login); // Return -1 if KO, 1 if OK
|
|
if ($resrunjob < 0) {
|
|
setEventMessages($object->error, $object->errors, 'errors');
|
|
}
|
|
|
|
// Plan next run
|
|
$res = $object->reprogram_jobs($user->login, $now);
|
|
if ($res > 0) {
|
|
if ($resrunjob >= 0) { // We show the result of reprogram only if no error message already reported
|
|
if ($object->lastresult >= 0) {
|
|
setEventMessages($langs->trans("JobFinished"), null, 'mesgs');
|
|
} else {
|
|
setEventMessages($langs->trans("JobFinished"), null, 'errors');
|
|
}
|
|
}
|
|
$action = '';
|
|
} else {
|
|
setEventMessages($object->error, $object->errors, 'errors');
|
|
$action = '';
|
|
}
|
|
|
|
$param = '&search_status='.urlencode($search_status);
|
|
if (!empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) {
|
|
$param .= '&contextpage='.urlencode($contextpage);
|
|
}
|
|
if ($limit > 0 && $limit != $conf->liste_limit) {
|
|
$param .= '&limit='.((int) $limit);
|
|
}
|
|
if ($search_label) {
|
|
$param .= '&search_label='.urlencode($search_label);
|
|
}
|
|
if ($optioncss != '') {
|
|
$param .= '&optioncss='.urlencode($optioncss);
|
|
}
|
|
// Add $param from extra fields
|
|
include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_param.tpl.php';
|
|
|
|
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
|
|
exit;
|
|
}
|
|
}
|
|
|
|
// Mass actions
|
|
$objectclass = 'CronJob';
|
|
$objectlabel = 'CronJob';
|
|
$uploaddir = $conf->cron->dir_output;
|
|
include DOL_DOCUMENT_ROOT.'/core/actions_massactions.inc.php';
|
|
if ($massaction && $permissiontoadd) {
|
|
$tmpcron = new Cronjob($db);
|
|
foreach ($toselect as $id) {
|
|
$result = $tmpcron->fetch($id);
|
|
if ($result) {
|
|
$result = 0;
|
|
if ($massaction == 'disable') {
|
|
$result = $tmpcron->setStatut(Cronjob::STATUS_DISABLED);
|
|
} elseif ($massaction == 'enable') {
|
|
$result = $tmpcron->setStatut(Cronjob::STATUS_ENABLED);
|
|
}
|
|
//else dol_print_error($db, 'Bad value for massaction');
|
|
if ($result < 0) {
|
|
setEventMessages($tmpcron->error, $tmpcron->errors, 'errors');
|
|
}
|
|
} else {
|
|
$error++;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
/*
|
|
* View
|
|
*/
|
|
|
|
$form = new Form($db);
|
|
$cronjob = new Cronjob($db);
|
|
|
|
$title = $langs->trans("CronList");
|
|
|
|
llxHeader('', $title, '', '', 0, 0, '', '', '', 'bodyforlist');
|
|
|
|
$TTestNotAllowed = array();
|
|
$sqlTest = 'SELECT rowid, test FROM '.MAIN_DB_PREFIX.'cronjob';
|
|
$resultTest = $db->query($sqlTest);
|
|
if ($resultTest) {
|
|
while ($objTest = $db->fetch_object($resultTest)) {
|
|
$veriftest = verifCond($objTest->test);
|
|
if (!$veriftest) {
|
|
$TTestNotAllowed[$objTest->rowid] = $objTest->rowid;
|
|
}
|
|
}
|
|
}
|
|
|
|
$sql = "SELECT";
|
|
$sql .= " t.rowid,";
|
|
$sql .= " t.tms,";
|
|
$sql .= " t.datec,";
|
|
$sql .= " t.jobtype,";
|
|
$sql .= " t.label,";
|
|
$sql .= " t.command,";
|
|
$sql .= " t.classesname,";
|
|
$sql .= " t.objectname,";
|
|
$sql .= " t.methodename,";
|
|
$sql .= " t.params,";
|
|
$sql .= " t.md5params,";
|
|
$sql .= " t.module_name,";
|
|
$sql .= " t.priority,";
|
|
$sql .= " t.processing,";
|
|
$sql .= " t.datelastrun,";
|
|
$sql .= " t.datenextrun,";
|
|
$sql .= " t.dateend,";
|
|
$sql .= " t.datestart,";
|
|
$sql .= " t.lastresult,";
|
|
$sql .= " t.datelastresult,";
|
|
$sql .= " t.lastoutput,";
|
|
$sql .= " t.unitfrequency,";
|
|
$sql .= " t.frequency,";
|
|
$sql .= " t.status,";
|
|
$sql .= " t.fk_user_author,";
|
|
$sql .= " t.fk_user_mod,";
|
|
$sql .= " t.note,";
|
|
$sql .= " t.maxrun,";
|
|
$sql .= " t.nbrun,";
|
|
$sql .= " t.libname,";
|
|
$sql .= " t.test";
|
|
$sql .= " FROM ".MAIN_DB_PREFIX."cronjob as t";
|
|
$sql .= " WHERE entity IN (0,".$conf->entity.")";
|
|
if (!empty($TTestNotAllowed)) {
|
|
$sql .= ' AND t.rowid NOT IN ('.$db->sanitize(implode(',', $TTestNotAllowed)).')';
|
|
}
|
|
if ($search_status >= 0 && $search_status < 2 && $search_status != '') {
|
|
$sql .= " AND t.status = ".(empty($search_status) ? '0' : '1');
|
|
}
|
|
if ($search_lastresult != '') {
|
|
$sql .= natural_search("t.lastresult", $search_lastresult, 1);
|
|
}
|
|
if (GETPOSTISSET('search_processing')) {
|
|
$sql .= " AND t.processing = ".((int) $search_processing);
|
|
}
|
|
// Manage filter
|
|
if (is_array($filter) && count($filter) > 0) {
|
|
foreach ($filter as $key => $value) {
|
|
$sql .= " AND ".$key." LIKE '%".$db->escape($value)."%'";
|
|
}
|
|
}
|
|
if (!empty($search_module_name)) {
|
|
$sql .= natural_search("t.module_name", $search_module_name);
|
|
}
|
|
// Add where from extra fields
|
|
include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_sql.tpl.php';
|
|
// Add where from hooks
|
|
$parameters = array();
|
|
$reshook = $hookmanager->executeHooks('printFieldListWhere', $parameters); // Note that $action and $object may have been modified by hook
|
|
$sql .= $hookmanager->resPrint;
|
|
|
|
$sql .= $db->order($sortfield, $sortorder);
|
|
// Count total nb of records
|
|
$nbtotalofrecords = '';
|
|
if (!getDolGlobalInt('MAIN_DISABLE_FULL_SCANLIST')) {
|
|
$result = $db->query($sql);
|
|
$nbtotalofrecords = $db->num_rows($result);
|
|
if (($page * $limit) > $nbtotalofrecords) { // if total resultset is smaller then paging size (filtering), goto and load page 0
|
|
$page = 0;
|
|
$offset = 0;
|
|
}
|
|
}
|
|
|
|
$sql .= $db->plimit($limit + 1, $offset);
|
|
|
|
$result = $db->query($sql);
|
|
if (!$result) {
|
|
dol_print_error($db);
|
|
}
|
|
|
|
$num = $db->num_rows($result);
|
|
|
|
$arrayofselected = is_array($toselect) ? $toselect : array();
|
|
|
|
$param = '';
|
|
if (!empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) {
|
|
$param .= '&contextpage='.urlencode($contextpage);
|
|
}
|
|
if ($limit > 0 && $limit != $conf->liste_limit) {
|
|
$param .= '&limit='.((int) $limit);
|
|
}
|
|
if ($search_status) {
|
|
$param .= '&search_status='.urlencode($search_status);
|
|
}
|
|
if ($search_label) {
|
|
$param .= '&search_label='.urlencode($search_label);
|
|
}
|
|
if ($search_module_name) {
|
|
$param .= '&search_module_name='.urlencode($search_module_name);
|
|
}
|
|
if ($search_lastresult) {
|
|
$param .= '&search_lastresult='.urlencode($search_lastresult);
|
|
}
|
|
if ($mode) {
|
|
$param .= '&mode='.urlencode($mode);
|
|
}
|
|
if ($optioncss != '') {
|
|
$param .= '&optioncss='.urlencode($optioncss);
|
|
}
|
|
// Add $param from extra fields
|
|
include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_param.tpl.php';
|
|
|
|
$stringcurrentdate = $langs->trans("CurrentHour").': '.dol_print_date(dol_now(), 'dayhour');
|
|
|
|
if ($action == 'execute') {
|
|
print $form->formconfirm($_SERVER['PHP_SELF']."?id=".$id.'&securitykey='.$securitykey.$param, $langs->trans("CronExecute"), $langs->trans("CronConfirmExecute"), "confirm_execute", '', '', 1);
|
|
}
|
|
|
|
if ($action == 'delete' && empty($toselect)) { // Used when we make a delete on 1 line (not used for mass delete)
|
|
print $form->formconfirm($_SERVER['PHP_SELF']."?id=".$id.$param, $langs->trans("CronDelete"), $langs->trans("CronConfirmDelete"), "confirm_delete", '', '', 1);
|
|
}
|
|
|
|
// List of mass actions available
|
|
$arrayofmassactions = array(
|
|
//'presend'=>img_picto('', 'email', 'class="pictofixedwidth"').$langs->trans("SendByMail"),
|
|
//'builddoc'=>img_picto('', 'pdf', 'class="pictofixedwidth"').$langs->trans("PDFMerge"),
|
|
'enable' => img_picto('', 'check', 'class="pictofixedwidth"').$langs->trans("CronStatusActiveBtn"),
|
|
'disable' => img_picto('', 'uncheck', 'class="pictofixedwidth"').$langs->trans("CronStatusInactiveBtn"),
|
|
);
|
|
if ($user->hasRight('cron', 'delete')) {
|
|
$arrayofmassactions['predelete'] = img_picto('', 'delete', 'class="pictofixedwidth"').$langs->trans("Delete");
|
|
}
|
|
if (GETPOSTINT('nomassaction') || in_array($massaction, array('presend', 'predelete'))) {
|
|
$arrayofmassactions = array();
|
|
}
|
|
$massactionbutton = $form->selectMassAction('', $arrayofmassactions);
|
|
|
|
if ($mode == 'modulesetup') {
|
|
$linkback = '<a href="'.DOL_URL_ROOT.'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans("BackToModuleList").'</a>';
|
|
print load_fiche_titre($langs->trans("CronSetup"), $linkback, 'title_setup');
|
|
|
|
// Configuration header
|
|
$head = cronadmin_prepare_head();
|
|
}
|
|
|
|
print '<form method="POST" id="searchFormList" action="'.$_SERVER["PHP_SELF"].'" name="search_form">'."\n";
|
|
if ($optioncss != '') {
|
|
print '<input type="hidden" name="optioncss" value="'.$optioncss.'">';
|
|
}
|
|
print '<input type="hidden" name="token" value="'.newToken().'">';
|
|
print '<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
|
|
print '<input type="hidden" name="sortfield" value="'.$sortfield.'">';
|
|
print '<input type="hidden" name="sortorder" value="'.$sortorder.'">';
|
|
print '<input type="hidden" name="page" value="'.$page.'">';
|
|
print '<input type="hidden" name="contextpage" value="'.$contextpage.'">';
|
|
print '<input type="hidden" name="mode" value="'.$mode.'">';
|
|
|
|
// Line with explanation and button new
|
|
$newcardbutton = '';
|
|
$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->hasRight('cron', 'create'));
|
|
|
|
|
|
if ($mode == 'modulesetup') {
|
|
print dol_get_fiche_head($head, 'jobs', $langs->trans("Module2300Name"), -1, 'cron');
|
|
|
|
//print '<span class="opacitymedium">'.$langs->trans('CronInfo').'</span><br>';
|
|
}
|
|
|
|
|
|
print_barre_liste($title, $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords, ($mode == 'modulesetup' ? '' : 'title_setup'), 0, $newcardbutton, '', $limit);
|
|
|
|
// Add code for pre mass action (confirmation or email presend form)
|
|
$topicmail = "SendCronRef";
|
|
$modelmail = "cron";
|
|
$objecttmp = new Cronjob($db);
|
|
$trackid = 'cron'.$object->id;
|
|
include DOL_DOCUMENT_ROOT.'/core/tpl/massactions_pre.tpl.php';
|
|
|
|
$text = $langs->trans("HoursOnThisPageAreOnServerTZ").' '.$stringcurrentdate.'<br>';
|
|
if (getDolGlobalString('CRON_WARNING_DELAY_HOURS')) {
|
|
$text .= $langs->trans("WarningCronDelayed", getDolGlobalString('CRON_WARNING_DELAY_HOURS'));
|
|
}
|
|
print info_admin($text);
|
|
//print '<br>';
|
|
|
|
//$varpage = empty($contextpage) ? $_SERVER["PHP_SELF"] : $contextpage;
|
|
$selectedfields = '';
|
|
//$selectedfields=$form->multiSelectArrayWithCheckbox('selectedfields', $arrayfields, $varpage); // This also change content of $arrayfields
|
|
$selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons('checkforselect', 1) : '');
|
|
|
|
print '<div class="div-table-responsive">';
|
|
print '<table class="noborder liste">';
|
|
|
|
print '<tr class="liste_titre_filter">';
|
|
// Action column
|
|
if (getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
|
|
print '<td class="liste_titre right">';
|
|
$searchpicto = $form->showFilterButtons();
|
|
print $searchpicto;
|
|
print '</td>';
|
|
}
|
|
print '<td class="liste_titre"> </td>';
|
|
print '<td class="liste_titre">';
|
|
print '<input type="text" class="flat width75" name="search_label" value="'.$search_label.'">';
|
|
print '</td>';
|
|
//print '<td class="liste_titre"> </td>';
|
|
print '<td class="liste_titre"><input type="text" class="width50" name="search_module_name" value="'.$search_module_name.'"></td>';
|
|
print '<td class="liste_titre"> </td>';
|
|
print '<td class="liste_titre"> </td>';
|
|
//print '<td class="liste_titre"> </td>';
|
|
//print '<td class="liste_titre"> </td>';
|
|
print '<td class="liste_titre"> </td>';
|
|
print '<td class="liste_titre"> </td>';
|
|
print '<td class="liste_titre"> </td>';
|
|
print '<td class="liste_titre center"><input type="text" class="width50" name="search_lastresult" value="'.$search_lastresult.'"></td>';
|
|
print '<td class="liste_titre"> </td>';
|
|
print '<td class="liste_titre"> </td>';
|
|
print '<td class="liste_titre center">';
|
|
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');
|
|
print '</td>';
|
|
print '<td class="liste_titre"> </td>';
|
|
// Action column
|
|
if (!getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
|
|
print '<td class="liste_titre right">';
|
|
$searchpicto = $form->showFilterButtons();
|
|
print $searchpicto;
|
|
print '</td>';
|
|
}
|
|
print '</tr>';
|
|
|
|
print '<tr class="liste_titre">';
|
|
// Action column
|
|
if (getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
|
|
print_liste_field_titre($selectedfields, $_SERVER["PHP_SELF"], "", "", $param, '', $sortfield, $sortorder, 'center maxwidthsearch ');
|
|
}
|
|
print_liste_field_titre("Ref", $_SERVER["PHP_SELF"], "t.rowid", "", $param, '', $sortfield, $sortorder);
|
|
print_liste_field_titre("CronLabel", $_SERVER["PHP_SELF"], "t.label", "", $param, '', $sortfield, $sortorder);
|
|
//print_liste_field_titre("Priority", $_SERVER["PHP_SELF"], "t.priority", "", $param, '', $sortfield, $sortorder);
|
|
print_liste_field_titre("CronModule", $_SERVER["PHP_SELF"], "t.module_name", "", $param, '', $sortfield, $sortorder);
|
|
print_liste_field_titre("", '', '', "", $param, '', $sortfield, $sortorder, 'tdoverflowmax50 ');
|
|
print_liste_field_titre("CronFrequency", '', "", "", $param, '', $sortfield, $sortorder);
|
|
//print_liste_field_titre("CronDtStart", $_SERVER["PHP_SELF"], "t.datestart", "", $param, 'align="center"', $sortfield, $sortorder);
|
|
//print_liste_field_titre("CronDtEnd", $_SERVER["PHP_SELF"], "t.dateend", "", $param, 'align="center"', $sortfield, $sortorder);
|
|
print_liste_field_titre("CronNbRun", $_SERVER["PHP_SELF"], "t.nbrun", "", $param, '', $sortfield, $sortorder, 'right tdoverflowmax50 maxwidth50imp ');
|
|
print_liste_field_titre("CronDtLastLaunch", $_SERVER["PHP_SELF"], "t.datelastrun", "", $param, '', $sortfield, $sortorder, 'center tdoverflowmax100 ');
|
|
print_liste_field_titre("Duration", $_SERVER["PHP_SELF"], "", "", $param, '', $sortfield, $sortorder, 'center ');
|
|
print_liste_field_titre("CronLastResult", $_SERVER["PHP_SELF"], "t.lastresult", "", $param, '', $sortfield, $sortorder, 'center ');
|
|
print_liste_field_titre("CronLastOutput", $_SERVER["PHP_SELF"], "t.lastoutput", "", $param, '', $sortfield, $sortorder);
|
|
print_liste_field_titre("CronDtNextLaunch", $_SERVER["PHP_SELF"], "t.datenextrun", "", $param, '', $sortfield, $sortorder, 'center ');
|
|
print_liste_field_titre("Status", $_SERVER["PHP_SELF"], "t.status,t.priority", "", $param, '', $sortfield, $sortorder, 'center ');
|
|
print_liste_field_titre("", $_SERVER["PHP_SELF"], "", "", $param, '', $sortfield, $sortorder, 'center ');
|
|
// Action column
|
|
if (!getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
|
|
print_liste_field_titre($selectedfields, $_SERVER["PHP_SELF"], "", "", $param, '', $sortfield, $sortorder, 'center maxwidthsearch ');
|
|
}
|
|
print "</tr>\n";
|
|
|
|
|
|
if ($num > 0) {
|
|
// Loop on each job
|
|
$now = dol_now();
|
|
$i = 0;
|
|
|
|
while ($i < min($num, $limit)) {
|
|
$obj = $db->fetch_object($result);
|
|
|
|
if (empty($obj)) {
|
|
break;
|
|
}
|
|
|
|
$reg = array();
|
|
if (preg_match('/:(.*)$/', $obj->label, $reg)) {
|
|
$langs->load($reg[1]);
|
|
}
|
|
|
|
$object->id = $obj->rowid;
|
|
$object->ref = $obj->rowid;
|
|
$object->label = preg_replace('/:.*$/', '', $obj->label);
|
|
$object->status = $obj->status;
|
|
$object->priority = $obj->priority;
|
|
$object->processing = $obj->processing;
|
|
$object->lastresult = (string) $obj->lastresult;
|
|
$object->datestart = $db->jdate($obj->datestart);
|
|
$object->dateend = $db->jdate($obj->dateend);
|
|
$object->module_name = $obj->module_name;
|
|
$object->params = $obj->params;
|
|
$object->datelastrun = $db->jdate($obj->datelastrun);
|
|
$object->datenextrun = $db->jdate($obj->datenextrun);
|
|
|
|
$datelastrun = $db->jdate($obj->datelastrun);
|
|
$datelastresult = $db->jdate($obj->datelastresult);
|
|
|
|
print '<tr class="oddeven">';
|
|
|
|
// Action column
|
|
if (getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
|
|
print '<td class="nowraponall center">';
|
|
if ($massactionbutton || $massaction) { // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined
|
|
$selected = 0;
|
|
if (in_array($obj->rowid, $arrayofselected)) {
|
|
$selected = 1;
|
|
}
|
|
print '<input id="cb'.$obj->rowid.'" class="flat checkforselect valignmiddle" type="checkbox" name="toselect[]" value="'.$obj->rowid.'"'.($selected ? ' checked="checked"' : '').'>';
|
|
}
|
|
print '</td>';
|
|
}
|
|
|
|
// Ref
|
|
print '<td class="nowraponall">';
|
|
print $object->getNomUrl(1);
|
|
print '</td>';
|
|
|
|
// Label
|
|
print '<td class="minwidth125">';
|
|
if (!empty($object->label)) {
|
|
$object->ref = $langs->trans($object->label);
|
|
print '<div class="small twolinesmax minwidth150 maxwidth250 classfortooltip" title="'.dol_escape_htmltag($langs->trans($object->label), 0, 0).'">';
|
|
print $object->getNomUrl(0, '', 1);
|
|
print '</div>';
|
|
$object->ref = $obj->rowid;
|
|
} else {
|
|
//print $langs->trans('CronNone');
|
|
}
|
|
print '</td>';
|
|
|
|
// Priority
|
|
/*print '<td class="right">';
|
|
print dol_escape_htmltag($object->priority);
|
|
print '</td>';*/
|
|
|
|
// Module
|
|
print '<td>';
|
|
print dol_escape_htmltag($object->module_name);
|
|
print '</td>';
|
|
|
|
// Class/Method
|
|
print '<td class="nowraponall">';
|
|
if ($obj->jobtype == 'method') {
|
|
$text = img_picto('', 'code');
|
|
$texttoshow = '<b>'.$langs->trans("CronType_method").'</b><br><br>';
|
|
$texttoshow .= $langs->trans('CronModule').': '.$obj->module_name.'<br>';
|
|
$texttoshow .= $langs->trans('CronClass').': '.$obj->classesname.'<br>';
|
|
$texttoshow .= $langs->trans('CronObject').': '.$obj->objectname.'<br>';
|
|
$texttoshow .= $langs->trans('CronMethod').': '.$obj->methodename;
|
|
$texttoshow .= '<br>'.$langs->trans('CronArgs').': '.$obj->params;
|
|
$texttoshow .= '<br>'.$langs->trans('Comment').': '.$langs->trans($obj->note);
|
|
} elseif ($obj->jobtype == 'command') {
|
|
$text = img_picto('', 'terminal');
|
|
$texttoshow = '<b>'.$langs->trans('CronType_command').'</b><br><br>';
|
|
$texttoshow .= $langs->trans('CronCommand').': '.dol_trunc($obj->command);
|
|
$texttoshow .= '<br>'.$langs->trans('CronArgs').': '.$obj->params;
|
|
$texttoshow .= '<br>'.$langs->trans('Comment').': '.$langs->trans($obj->note);
|
|
}
|
|
print '<span class="classfortooltip" title="'.dol_escape_htmltag($texttoshow, 1, 1).'">'.$text.'</a>';
|
|
print '</td>';
|
|
|
|
// Frequency
|
|
$s = '';
|
|
if ($obj->unitfrequency == "60") {
|
|
$s = ($obj->frequency)." ".$langs->trans('MinuteShort');
|
|
} elseif ($obj->unitfrequency == "3600") {
|
|
$s = ($obj->frequency)." ".$langs->trans('HourShort');
|
|
} elseif ($obj->unitfrequency == "86400") {
|
|
$s = ($obj->frequency)." ".($obj->frequency > 1 ? $langs->trans('DurationDays') : $langs->trans('DurationDay'));
|
|
} elseif ($obj->unitfrequency == "604800") {
|
|
$s = ($obj->frequency)." ".($obj->frequency > 1 ? $langs->trans('DurationWeeks') : $langs->trans('DurationWeek'));
|
|
} elseif ($obj->unitfrequency == "2678400") {
|
|
$s = ($obj->frequency)." ".($obj->frequency > 1 ? $langs->trans('DurationMonths') : $langs->trans('DurationMonth'));
|
|
}
|
|
print '<td class="tdoverflowmax125 center" title="'.dol_escape_htmltag($s).'">';
|
|
print dol_escape_htmltag($s);
|
|
print '</td>';
|
|
|
|
/*
|
|
print '<td class="center">';
|
|
if (!empty($obj->datestart)) {
|
|
print dol_print_date($db->jdate($obj->datestart), 'dayhour', 'tzserver');
|
|
}
|
|
print '</td>';
|
|
|
|
print '<td class="center">';
|
|
if (!empty($obj->dateend)) {
|
|
print dol_print_date($db->jdate($obj->dateend), 'dayhour', 'tzserver');
|
|
}
|
|
print '</td>';
|
|
*/
|
|
|
|
print '<td class="right">';
|
|
if (!empty($obj->nbrun)) {
|
|
print dol_escape_htmltag($obj->nbrun);
|
|
} else {
|
|
print '0';
|
|
}
|
|
if (!empty($obj->maxrun)) {
|
|
print ' <span class="'.$langs->trans("Max").'">/ '.dol_escape_htmltag($obj->maxrun).'</span>';
|
|
}
|
|
print '</td>';
|
|
|
|
$datefromto = (empty($datelastrun) ? '' : dol_print_date($datelastrun, 'dayhoursec', 'tzserver')).' - '.(empty($datelastresult) ? '' : dol_print_date($datelastresult, 'dayhoursec', 'tzserver'));
|
|
|
|
// Date start last run
|
|
print '<td class="center" title="'.dol_escape_htmltag($datefromto).'">';
|
|
if (!empty($datelastrun)) {
|
|
print dol_print_date($datelastrun, 'dayhoursec', 'tzserver');
|
|
}
|
|
print '</td>';
|
|
|
|
// Duration
|
|
print '<td class="center nowraponall" title="'.dol_escape_htmltag($datefromto).'">';
|
|
if (!empty($datelastresult) && ($datelastresult >= $datelastrun)) {
|
|
$nbseconds = max($datelastresult - $datelastrun, 1);
|
|
print $nbseconds.' '.$langs->trans("SecondShort");
|
|
}
|
|
print '</td>';
|
|
|
|
// Return code of last run
|
|
print '<td class="center tdlastresultcode" title="'.dol_escape_htmltag($obj->lastresult).'">';
|
|
if ($obj->lastresult != '') {
|
|
if (empty($obj->lastresult)) {
|
|
print $obj->lastresult; // Print '0'
|
|
} else {
|
|
print '<span class="error">'.dol_escape_htmltag(dol_trunc($obj->lastresult)).'</div>';
|
|
}
|
|
}
|
|
print '</td>';
|
|
|
|
// Output of last run
|
|
print '<td class="small minwidth150">';
|
|
if (!empty($obj->lastoutput)) {
|
|
print '<div class="twolinesmax classfortooltip" title="'.dol_escape_htmltag($obj->lastoutput, 1, 1).'">';
|
|
print dol_trunc(dolGetFirstLineOfText($obj->lastoutput, 2), 100);
|
|
print '</div>';
|
|
}
|
|
print '</td>';
|
|
|
|
// Next run date
|
|
print '<td class="center">';
|
|
if (!empty($obj->datenextrun)) {
|
|
$datenextrun = $db->jdate($obj->datenextrun);
|
|
if (empty($obj->status)) {
|
|
print '<span class="opacitymedium strikefordisabled">';
|
|
}
|
|
print dol_print_date($datenextrun, 'dayhoursec');
|
|
if ($obj->status == Cronjob::STATUS_ENABLED) {
|
|
if ($obj->maxrun && $obj->nbrun >= $obj->maxrun) {
|
|
print img_warning($langs->trans("MaxRunReached"));
|
|
} elseif ($datenextrun && $datenextrun < $now) {
|
|
print img_warning($langs->trans("Late"));
|
|
}
|
|
}
|
|
if (empty($obj->status)) {
|
|
print '</span>';
|
|
}
|
|
}
|
|
print '</td>';
|
|
|
|
// Status
|
|
print '<td class="center">';
|
|
print $object->getLibStatut(5);
|
|
print '</td>';
|
|
|
|
print '<td class="nowraponall right">';
|
|
|
|
$backtopage = urlencode($_SERVER["PHP_SELF"].'?'.$param.($sortfield ? '&sortfield='.$sortfield : '').($sortorder ? '&sortorder='.$sortorder : ''));
|
|
if ($user->hasRight('cron', 'create')) {
|
|
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;
|
|
print "&backtopage=".$backtopage."\" title=\"".dol_escape_htmltag($langs->trans('Edit'))."\">".img_picto($langs->trans('Edit'), 'edit')."</a> ";
|
|
}
|
|
if ($user->hasRight('cron', 'delete')) {
|
|
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;
|
|
print '" title="'.dol_escape_htmltag($langs->trans('CronDelete')).'">'.img_picto($langs->trans('CronDelete'), 'delete', '', false, 0, 0, '', 'marginleftonly').'</a> ';
|
|
} else {
|
|
print '<a href="#" title="'.dol_escape_htmltag($langs->trans('NotEnoughPermissions')).'">'.img_picto($langs->trans('NotEnoughPermissions'), 'delete', '', false, 0, 0, '', 'marginleftonly').'</a> ';
|
|
}
|
|
if ($user->hasRight('cron', 'execute')) {
|
|
if (!empty($obj->status)) {
|
|
print '<a class="reposition" href="'.$_SERVER["PHP_SELF"].'?id='.$obj->rowid.'&action=execute&token='.newToken();
|
|
print(!getDolGlobalString('CRON_KEY') ? '' : '&securitykey=' . getDolGlobalString('CRON_KEY'));
|
|
print($sortfield ? '&sortfield='.$sortfield : '');
|
|
print($sortorder ? '&sortorder='.$sortorder : '');
|
|
print $param."\" title=\"".dol_escape_htmltag($langs->trans('CronExecute'))."\">".img_picto($langs->trans('CronExecute'), "play", '', false, 0, 0, '', 'marginleftonly').'</a>';
|
|
} else {
|
|
print '<a href="#" class="cursordefault" title="'.dol_escape_htmltag($langs->trans('JobDisabled')).'">'.img_picto($langs->trans('JobDisabled'), "playdisabled", '', false, 0, 0, '', 'marginleftonly').'</a>';
|
|
}
|
|
} else {
|
|
print '<a href="#" class="cursornotallowed" title="'.dol_escape_htmltag($langs->trans('NotEnoughPermissions')).'">'.img_picto($langs->trans('NotEnoughPermissions'), "playdisabled", '', false, 0, 0, '', 'marginleftonly').'</a>';
|
|
}
|
|
|
|
print '</td>';
|
|
|
|
// Action column
|
|
if (!getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
|
|
print '<td class="nowraponall center">';
|
|
if ($massactionbutton || $massaction) { // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined
|
|
$selected = 0;
|
|
if (in_array($obj->rowid, $arrayofselected)) {
|
|
$selected = 1;
|
|
}
|
|
print '<input id="cb'.$obj->rowid.'" class="flat checkforselect valignmiddle" type="checkbox" name="toselect[]" value="'.$obj->rowid.'"'.($selected ? ' checked="checked"' : '').'>';
|
|
}
|
|
print '</td>';
|
|
}
|
|
|
|
print '</tr>';
|
|
|
|
$i++;
|
|
}
|
|
} else {
|
|
print '<tr><td colspan="16"><span class="opacitymedium">'.$langs->trans('CronNoJobs').'</span></td></tr>';
|
|
}
|
|
|
|
print '</table>';
|
|
print '</div>';
|
|
|
|
print '</from>';
|
|
|
|
if ($mode == 'modulesetup') {
|
|
print dol_get_fiche_end();
|
|
}
|
|
|
|
|
|
llxFooter();
|
|
|
|
$db->close();
|