5 include_once
"Services/Cron/classes/class.ilCronManager.php";
51 $this->lng = $DIC->language();
52 $this->ctrl = $DIC->ctrl();
54 $this->tpl = $DIC->ui()->mainTemplate();
56 $this->rbac = $DIC->rbac();
57 $this->error = $DIC[
'ilErr'];
59 $this->lng->loadLanguageModule(
'cron');
64 if (!$this->rbac->system()->checkAccess(
'visible,read', SYSTEM_FOLDER_ID)) {
65 $this->error->raiseError($this->lng->txt(
'no_permission'), $this->error->WARNING);
68 $class = $this->ctrl->getNextClass($this);
71 case "ilpropertyformgui":
73 $this->ctrl->forwardCommand($form);
76 $cmd = $this->ctrl->getCmd(
"render");
84 if ($this->
settings->get(
'last_cronjob_start_ts')) {
87 $tstamp = $this->lng->txt(
'cronjob_last_start_unknown');
91 include_once
"Services/Cron/classes/class.ilCronManagerTableGUI.php";
96 $this->rbac->system()->checkAccess(
'write', SYSTEM_FOLDER_ID)
98 $this->tpl->setContent($tbl->getHTML());
103 if (!$this->rbac->system()->checkAccess(
'write', SYSTEM_FOLDER_ID)) {
104 $this->error->raiseError($this->lng->txt(
'no_permission'), $this->error->WARNING);
107 $id = $_REQUEST[
"jid"];
109 $this->ctrl->redirect($this,
"render");
116 $this->tpl->setContent($a_form->getHTML());
126 switch ($scheduleTypeId) {
128 return $this->lng->txt(
'cron_schedule_daily');
131 return $this->lng->txt(
'cron_schedule_weekly');
134 return $this->lng->txt(
'cron_schedule_monthly');
137 return $this->lng->txt(
'cron_schedule_quarterly');
140 return $this->lng->txt(
'cron_schedule_yearly');
143 return sprintf($this->lng->txt(
'cron_schedule_in_minutes'),
'x');
146 return sprintf($this->lng->txt(
'cron_schedule_in_hours'),
'x');
149 return sprintf($this->lng->txt(
'cron_schedule_in_days'),
'x');
152 throw new \InvalidArgumentException(sprintf(
'The passed argument %s is invalid!', var_export($scheduleTypeId, 1)));
162 switch ($scheduleTypeId) {
173 throw new \InvalidArgumentException(sprintf(
'The passed argument %s is invalid!', var_export($scheduleTypeId, 1)));
196 $this->ctrl->redirect($this,
"render");
199 $this->ctrl->setParameter($this,
"jid", $a_job_id);
203 include_once(
"Services/Cron/classes/class.ilCronJob.php");
204 include_once(
"Services/Form/classes/class.ilPropertyFormGUI.php");
206 $form->setFormAction($this->ctrl->getFormAction($this,
"update"));
207 $form->setTitle($this->lng->txt(
"cron_action_edit") .
': "' . $job->getTitle() .
'"');
209 if ($job->hasFlexibleSchedule()) {
211 $type->setRequired(
true);
214 foreach ($job->getAllScheduleTypes() as $typeId) {
215 if (!in_array($typeId, $job->getValidScheduleTypes())) {
223 $type->addOption($option);
225 if (in_array($typeId, $job->getScheduleTypesWithValues())) {
227 $this->lng->txt(
'cron_schedule_value'),
231 $scheduleValue->setRequired(
true);
232 $scheduleValue->setSize(5);
233 if (
$data[
'schedule_type'] == $typeId) {
234 $scheduleValue->setValue(
$data[
'schedule_value']);
236 $option->addSubItem($scheduleValue);
240 $form->addItem(
$type);
243 if ($job->hasCustomSettings()) {
244 $job->addCustomSettingsToForm($form);
247 $form->addCommandButton(
"update", $this->lng->txt(
"save"));
248 $form->addCommandButton(
"render", $this->lng->txt(
"cancel"));
255 if (!$this->rbac->system()->checkAccess(
'write', SYSTEM_FOLDER_ID)) {
256 $this->error->raiseError($this->lng->txt(
'no_permission'), $this->error->WARNING);
259 $id = $_REQUEST[
"jid"];
261 $this->ctrl->redirect($this,
"render");
265 if ($form->checkInput()) {
269 if ($job->hasCustomSettings() &&
270 !$job->saveCustomSettings($form)) {
274 if (
$valid && $job->hasFlexibleSchedule()) {
275 $type = $form->getInput(
"type");
289 ilUtil::sendSuccess($this->lng->txt(
"cron_action_edit_success"),
true);
290 $this->ctrl->redirect($this,
"render");
295 $form->setValuesByPost();
301 $this->confirm(
"run");
306 if (!$this->rbac->system()->checkAccess(
'write', SYSTEM_FOLDER_ID)) {
307 $this->error->raiseError($this->lng->txt(
'no_permission'), $this->error->WARNING);
310 $job_id =
$_GET[
"jid"];
313 ilUtil::sendSuccess($this->lng->txt(
"cron_action_run_success"),
true);
319 $this->ctrl->redirect($this,
"render");
324 $this->confirm(
"activate");
329 if (!$this->rbac->system()->checkAccess(
'write', SYSTEM_FOLDER_ID)) {
330 $this->error->raiseError($this->lng->txt(
'no_permission'), $this->error->WARNING);
335 foreach ($jobs as $job) {
342 ilUtil::sendSuccess($this->lng->txt(
"cron_action_activate_success"),
true);
345 $this->ctrl->redirect($this,
"render");
350 $this->confirm(
"deactivate");
355 if (!$this->rbac->system()->checkAccess(
'write', SYSTEM_FOLDER_ID)) {
356 $this->error->raiseError($this->lng->txt(
'no_permission'), $this->error->WARNING);
361 foreach ($jobs as $job) {
367 ilUtil::sendSuccess($this->lng->txt(
"cron_action_deactivate_success"),
true);
370 $this->ctrl->redirect($this,
"render");
375 $this->confirm(
"reset");
380 if (!$this->rbac->system()->checkAccess(
'write', SYSTEM_FOLDER_ID)) {
381 $this->error->raiseError($this->lng->txt(
'no_permission'), $this->error->WARNING);
386 foreach ($jobs as $job) {
389 ilUtil::sendSuccess($this->lng->txt(
"cron_action_reset_success"),
true);
392 $this->ctrl->redirect($this,
"render");
399 if ($_REQUEST[
"jid"]) {
400 $job_id = trim($_REQUEST[
"jid"]);
403 $res[$job_id] = $job;
405 } elseif (is_array($_REQUEST[
"mjid"])) {
406 foreach ($_REQUEST[
"mjid"] as $job_id) {
409 $res[$job_id] = $job;
417 protected function confirm($a_action)
419 if (!$this->rbac->system()->checkAccess(
'write', SYSTEM_FOLDER_ID)) {
420 $this->error->raiseError($this->lng->txt(
'no_permission'), $this->error->WARNING);
425 $this->ctrl->redirect($this,
"render");
428 if (
'run' == $a_action) {
430 $jobs = array_filter($jobs,
function ($job) {
434 return $job->isManuallyExecutable();
437 if (0 == count($jobs)) {
439 $this->ctrl->redirect($this,
'render');
443 include_once(
"./Services/Utilities/classes/class.ilConfirmationGUI.php");
446 if (
sizeof($jobs) == 1) {
447 $job_id = array_pop(array_keys($jobs));
448 $job = array_pop($jobs);
449 $title = $job->getTitle();
451 $title = preg_replace(
"[^A-Za-z0-9_\-]",
"", $job->getId());
454 $cgui->setHeaderText(sprintf(
455 $this->lng->txt(
"cron_action_" . $a_action .
"_sure"),
459 $this->ctrl->setParameter($this,
"jid", $job_id);
461 $cgui->setHeaderText($this->lng->txt(
"cron_action_" . $a_action .
"_sure_multi"));
463 foreach ($jobs as $job_id => $job) {
464 $cgui->addItem(
"mjid[]", $job_id, $job->getTitle());
468 $cgui->setFormAction($this->ctrl->getFormAction($this,
"confirmed" . ucfirst($a_action)));
469 $cgui->setCancel($this->lng->txt(
"cancel"),
"render");
470 $cgui->setConfirm($this->lng->txt(
"cron_action_" . $a_action),
"confirmed" . ucfirst($a_action));
472 $this->tpl->setContent($cgui->getHTML());
480 foreach (
$data as $item) {
488 if (method_exists($job,
"addToExternalSettingsForm")) {
489 $job->addToExternalSettingsForm($a_form_id, $fields, $item[
"job_status"]);
493 if (
sizeof($fields)) {
494 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.
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
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
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
List all active cron jobs.
Confirmation screen class.