45 $this->lng = $DIC->language();
46 $this->ctrl = $DIC->ctrl();
48 $this->tpl = $DIC->ui()->mainTemplate();
49 $this->uiFactory = $DIC->ui()->factory();
50 $this->uiRenderer = $DIC->ui()->renderer();
51 $this->uiRenderer = $DIC->ui()->renderer();
52 $this->uiService = $DIC->uiService();
54 $this->rbac = $DIC->rbac();
55 $this->error = $DIC[
'ilErr'];
58 $this->lng->loadLanguageModule(
'cron');
59 $this->lng->loadLanguageModule(
'cmps');
65 $this->error->raiseError($this->lng->txt(
'no_permission'), $this->error->WARNING);
68 $class = $this->ctrl->getNextClass($this);
70 switch (strtolower($class)) {
71 case strtolower(ilPropertyFormGUI::class):
73 $this->ctrl->forwardCommand($form);
77 $cmd = $this->ctrl->getCmd(
'render');
83 $tstamp = $this->lng->txt(
'cronjob_last_start_unknown');
84 if ($this->
settings->get(
'last_cronjob_start_ts')) {
88 $message = $this->uiFactory->messageBox()->info($this->lng->txt(
'cronjob_last_start') .
': ' . $tstamp);
98 $filter = $tableFilterMediator->filter($this->ctrl->getFormAction(
111 $this->tpl->setContent(implode(
'', [
112 $this->uiRenderer->render([
$message, $filter]),
114 $tableFilterMediator->filteredJobs(
124 $this->error->raiseError($this->lng->txt(
'no_permission'), $this->error->WARNING);
127 $id = $_REQUEST[
"jid"];
129 $this->ctrl->redirect($this,
"render");
136 $this->tpl->setContent($a_form->getHTML());
146 switch ($scheduleTypeId) {
148 return $this->lng->txt(
'cron_schedule_daily');
151 return $this->lng->txt(
'cron_schedule_weekly');
154 return $this->lng->txt(
'cron_schedule_monthly');
157 return $this->lng->txt(
'cron_schedule_quarterly');
160 return $this->lng->txt(
'cron_schedule_yearly');
163 return sprintf($this->lng->txt(
'cron_schedule_in_minutes'),
'x');
166 return sprintf($this->lng->txt(
'cron_schedule_in_hours'),
'x');
169 return sprintf($this->lng->txt(
'cron_schedule_in_days'),
'x');
172 throw new \InvalidArgumentException(sprintf(
'The passed argument %s is invalid!', var_export($scheduleTypeId, 1)));
182 switch ($scheduleTypeId) {
193 throw new \InvalidArgumentException(sprintf(
'The passed argument %s is invalid!', var_export($scheduleTypeId, 1)));
216 $this->ctrl->redirect($this,
"render");
219 $this->ctrl->setParameter($this,
"jid", $a_job_id);
222 $data = array_pop($jobData);
224 include_once(
"Services/Cron/classes/class.ilCronJob.php");
225 include_once(
"Services/Form/classes/class.ilPropertyFormGUI.php");
227 $form->setFormAction($this->ctrl->getFormAction($this,
"update"));
228 $form->setTitle($this->lng->txt(
"cron_action_edit") .
': "' . $job->getTitle() .
'"');
230 if ($job->hasFlexibleSchedule()) {
232 $type->setRequired(
true);
233 $type->setValue($data[
'schedule_type']);
235 foreach ($job->getAllScheduleTypes() as $typeId) {
236 if (!in_array($typeId, $job->getValidScheduleTypes())) {
244 $type->addOption($option);
246 if (in_array($typeId, $job->getScheduleTypesWithValues())) {
248 $this->lng->txt(
'cron_schedule_value'),
252 $scheduleValue->setRequired(
true);
253 $scheduleValue->setSize(5);
254 if ($data[
'schedule_type'] == $typeId) {
255 $scheduleValue->setValue($data[
'schedule_value']);
257 $option->addSubItem($scheduleValue);
261 $form->addItem(
$type);
264 if ($job->hasCustomSettings()) {
265 $job->addCustomSettingsToForm($form);
268 $form->addCommandButton(
"update", $this->lng->txt(
"save"));
269 $form->addCommandButton(
"render", $this->lng->txt(
"cancel"));
277 $this->error->raiseError($this->lng->txt(
'no_permission'), $this->error->WARNING);
280 $id = $_REQUEST[
"jid"];
282 $this->ctrl->redirect($this,
"render");
286 if ($form->checkInput()) {
290 if ($job->hasCustomSettings() &&
291 !$job->saveCustomSettings($form)) {
295 if (
$valid && $job->hasFlexibleSchedule()) {
296 $type = $form->getInput(
"type");
310 ilUtil::sendSuccess($this->lng->txt(
"cron_action_edit_success"),
true);
311 $this->ctrl->redirect($this,
"render");
316 $form->setValuesByPost();
322 $this->confirm(
"run");
328 $this->error->raiseError($this->lng->txt(
'no_permission'), $this->error->WARNING);
331 $job_id =
$_GET[
"jid"];
334 ilUtil::sendSuccess($this->lng->txt(
"cron_action_run_success"),
true);
340 $this->ctrl->redirect($this,
"render");
345 $this->confirm(
"activate");
351 $this->error->raiseError($this->lng->txt(
'no_permission'), $this->error->WARNING);
356 foreach ($jobs as $job) {
363 ilUtil::sendSuccess($this->lng->txt(
"cron_action_activate_success"),
true);
366 $this->ctrl->redirect($this,
"render");
371 $this->confirm(
"deactivate");
377 $this->error->raiseError($this->lng->txt(
'no_permission'), $this->error->WARNING);
382 foreach ($jobs as $job) {
388 ilUtil::sendSuccess($this->lng->txt(
"cron_action_deactivate_success"),
true);
391 $this->ctrl->redirect($this,
"render");
396 $this->confirm(
"reset");
402 $this->error->raiseError($this->lng->txt(
'no_permission'), $this->error->WARNING);
407 foreach ($jobs as $job) {
410 ilUtil::sendSuccess($this->lng->txt(
"cron_action_reset_success"),
true);
413 $this->ctrl->redirect($this,
"render");
420 if ($_REQUEST[
"jid"]) {
421 $job_id = trim($_REQUEST[
"jid"]);
424 $res[$job_id] = $job;
426 } elseif (is_array($_REQUEST[
"mjid"])) {
427 foreach ($_REQUEST[
"mjid"] as $job_id) {
430 $res[$job_id] = $job;
438 protected function confirm($a_action)
441 $this->error->raiseError($this->lng->txt(
'no_permission'), $this->error->WARNING);
446 $this->ctrl->redirect($this,
"render");
449 if (
'run' == $a_action) {
451 $jobs = array_filter($jobs,
function ($job) {
455 return $job->isManuallyExecutable();
458 if (0 == count($jobs)) {
460 $this->ctrl->redirect($this,
'render');
464 include_once(
"./Services/Utilities/classes/class.ilConfirmationGUI.php");
467 if (
sizeof($jobs) == 1) {
468 $jobKeys = array_keys($jobs);
469 $job_id = array_pop($jobKeys);
470 $job = array_pop($jobs);
471 $title = $job->getTitle();
473 $title = preg_replace(
"[^A-Za-z0-9_\-]",
"", $job->getId());
476 $cgui->setHeaderText(sprintf(
477 $this->lng->txt(
"cron_action_" . $a_action .
"_sure"),
481 $this->ctrl->setParameter($this,
"jid", $job_id);
483 $cgui->setHeaderText($this->lng->txt(
"cron_action_" . $a_action .
"_sure_multi"));
485 foreach ($jobs as $job_id => $job) {
486 $cgui->addItem(
"mjid[]", $job_id, $job->getTitle());
490 $cgui->setFormAction($this->ctrl->getFormAction($this,
"confirmed" . ucfirst($a_action)));
491 $cgui->setCancel($this->lng->txt(
"cancel"),
"render");
492 $cgui->setConfirm($this->lng->txt(
"cron_action_" . $a_action),
"confirmed" . ucfirst($a_action));
494 $this->tpl->setContent($cgui->getHTML());
502 foreach (
$data as $item) {
510 if (method_exists($job,
"addToExternalSettingsForm")) {
511 $job->addToExternalSettingsForm($a_form_id, $fields, $item[
"job_status"]);
515 if (
sizeof($fields)) {
516 return array(
"cron_jobs" => array(
"jumpToCronJobs", $fields));
static getJobInstance($a_id, $a_component, $a_class, $a_path=null)
Get job instance (by job data)
This class represents an option in a radio group.
getScheduleValueFormElementName(int $scheduleTypeId)
static deactivateJob(ilCronJob $a_job, $a_manual=false)
Deactivate cron job.
const SCHEDULE_TYPE_IN_MINUTES
static activateJob(ilCronJob $a_job, $a_manual=false)
Activate cron job.
static isJobInactive($a_job_id)
Check if given job is currently inactive.
static runJobManual($a_job_id)
Run single job manually.
const SCHEDULE_TYPE_MONTHLY
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false, $include_seconds=false)
Format a date public.
const SCHEDULE_TYPE_WEEKLY
static resetJob(ilCronJob $a_job)
Reset job.
addToExternalSettingsForm($a_form_id)
static getCronJobData($a_id=null, $a_include_inactive=true)
Get cron job configuration/execution data.
foreach($_POST as $key=> $value) $res
static getJobInstanceById($a_job_id)
Get job instance (by job id)
const SCHEDULE_TYPE_IN_DAYS
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
hasScheduleValue(int $scheduleTypeId)
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
__construct()
ilCronManagerGUI constructor.
const SCHEDULE_TYPE_YEARLY
edit(ilPropertyFormGUI $a_form=null)
const SCHEDULE_TYPE_DAILY
const SCHEDULE_TYPE_QUARTERLY
getScheduleTypeFormElementName(int $scheduleTypeId)
static updateJobSchedule(ilCronJob $a_job, $a_schedule_type, $a_schedule_value)
Update job schedule.
static isJobActive($a_job_id)
Check if given job is currently active.
const SCHEDULE_TYPE_IN_HOURS
Class ilCronJobRepositoryImpl.
List all active cron jobs.
Confirmation screen class.