4 include_once
'./Services/Table/classes/class.ilTable2GUI.php';
5 include_once
'./Services/Cron/classes/class.ilCronJobResult.php';
41 $this->controller =
$dic->ctrl();
44 $this->
setId(
'crnmng');
48 if ($this->mayWrite) {
51 $this->
addColumn($this->lng->txt(
'cron_job_id'),
'title');
52 $this->
addColumn($this->lng->txt(
'cron_component'),
'component');
53 $this->
addColumn($this->lng->txt(
'cron_schedule'),
'schedule');
54 $this->
addColumn($this->lng->txt(
'cron_status'),
'status');
55 $this->
addColumn($this->lng->txt(
'cron_status_info'),
'');
56 $this->
addColumn($this->lng->txt(
'cron_result'),
'result');
57 $this->
addColumn($this->lng->txt(
'cron_result_info'),
'');
58 $this->
addColumn($this->lng->txt(
'cron_last_run'),
'last_run');
59 if ($this->mayWrite) {
60 $this->
addColumn($this->lng->txt(
'actions'),
'');
63 $this->
setTitle($this->lng->txt(
'cron_jobs'));
66 if ($this->mayWrite) {
74 $this->
setFormAction($this->controller->getFormAction($a_parent_obj, $a_parent_cmd));
87 $schedule = $this->
language->txt(
'cron_schedule_daily');
91 $schedule = $this->
language->txt(
'cron_schedule_weekly');
95 $schedule = $this->
language->txt(
'cron_schedule_monthly');
99 $schedule = $this->
language->txt(
'cron_schedule_quarterly');
103 $schedule = $this->
language->txt(
'cron_schedule_yearly');
108 $this->
language->txt(
'cron_schedule_in_minutes'),
115 $this->
language->txt(
'cron_schedule_in_hours'),
122 $this->
language->txt(
'cron_schedule_in_days'),
148 $status_info[] = $this->
language->txt(
'cron_changed_by_crontab');
151 return implode(
'<br />', $status_info);
164 $result = $this->
language->txt(
'cron_result_status_invalid_configuration');
206 $result_info[] = $this->
language->txt(
'cro_job_rc_' . $resultCode);
211 if (defined(
'DEVMODE') && DEVMODE) {
212 $result_info[] = $resultCode;
218 $result_info[] = $this->
language->txt(
'cron_changed_by_crontab');
221 return implode(
'<br />', $result_info);
235 $row[
'status'] = $this->
language->txt(
'cron_status_inactive');
237 $row[
'status'] = $this->
language->txt(
'cron_status_active');
243 $row[
'last_run'] = null;
250 $row[
'job_id'] = $entity->
getJobId();
253 $row[
'job_id'] =
'pl__' . $row[
'component'] .
'__' . $row[
'job_id'];
254 $row[
'component'] = $this->
language->txt(
'cmps_plugin') .
'/' . $row[
'component'];
258 $row[
'description'] = $entity->
getJob()->getDescription();
259 $row[
'is_manually_executable'] = $entity->
getJob()->isManuallyExecutable();
260 $row[
'has_settings'] = $entity->
getJob()->hasCustomSettings();
266 if ($entity->
getJob()->hasFlexibleSchedule()) {
267 $row[
'editable_schedule'] =
true;
290 if ($this->mayWrite) {
291 $this->tpl->setVariable(
'VAL_JID', $a_set[
'job_id']);
293 $this->tpl->setVariable(
'VAL_ID', $a_set[
'title']);
295 if ($a_set[
'description']) {
296 $this->tpl->setVariable(
'VAL_DESC', $a_set[
'description']);
299 $this->tpl->setVariable(
'VAL_COMPONENT', $a_set[
'component']);
300 $this->tpl->setVariable(
'VAL_SCHEDULE', $a_set[
'schedule']);
301 $this->tpl->setVariable(
'VAL_STATUS', $a_set[
'status']);
302 $this->tpl->setVariable(
'VAL_STATUS_INFO', $a_set[
'status_info']);
303 $this->tpl->setVariable(
'VAL_RESULT', $a_set[
'result']);
304 $this->tpl->setVariable(
'VAL_RESULT_INFO', $a_set[
'result_info']);
305 if ($a_set[
'last_run'] > time()) {
306 $a_set[
'last_run'] = $this->
language->txt(
'cron_running_since') .
' ' .
310 if ($a_set[
'alive_ts'] != $a_set[
'running_ts']) {
311 $a_set[
'last_run'] .=
'<br />(Ping: ' .
314 } elseif ($a_set[
'last_run']) {
317 $this->tpl->setVariable(
'VAL_LAST_RUN', $a_set[
'last_run'] ? $a_set[
'last_run'] :
'-');
320 if ($this->mayWrite && !$a_set[
'running_ts']) {
322 $actions[] =
'reset';
323 } elseif (!$a_set[
'job_status']) {
324 $actions[] =
'activate';
326 if ($a_set[
'is_manually_executable']) {
329 $actions[] =
'deactivate';
332 if ($a_set[
'editable_schedule'] || $a_set[
'has_settings']) {
336 $this->controller->setParameter($this->
getParentObject(),
'jid', $a_set[
'job_id']);
337 foreach ($actions as $action) {
338 $this->tpl->setCurrentBlock(
'action_bl');
339 $this->tpl->setVariable(
341 $this->controller->getLinkTarget($this->getParentObject(), $action)
343 $this->tpl->setVariable(
'TXT_ACTION', $this->
language->txt(
'cron_action_' . $action));
344 $this->tpl->parseCurrentBlock();
formatResultInfo(ilCronJobEntity $entity)
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
formatSchedule(ilCronJobEntity $entity, array $row)
getEffectiveScheduleValue()
getEffectiveScheduleType()
const STATUS_INVALID_CONFIGURATION
Class ChatMainBarProvider .
const SCHEDULE_TYPE_IN_MINUTES
formatStatusInfo(ilCronJobEntity $entity)
const SCHEDULE_TYPE_MONTHLY
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false, $include_seconds=false)
Format a date public.
getParentObject()
Get parent object.
const SCHEDULE_TYPE_WEEKLY
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
__construct(object $a_parent_obj, $a_parent_cmd, \ILIAS\DI\Container $dic=null, bool $mayWrite=false)
ilCronManagerTableGUI constructor.
setSelectAllCheckbox($a_select_all_checkbox, $a_select_all_on_top=false)
Set the name of the checkbox that should be toggled with a select all button.
addMultiCommand($a_cmd, $a_text)
Add Command button.
const SCHEDULE_TYPE_IN_DAYS
static getNamePresentation( $a_user_id, $a_user_image=false, $a_profile_link=false, $a_profile_back_link="", $a_force_first_lastname=false, $a_omit_login=false, $a_sortable=true, $a_return_data_array=false, $a_ctrl_path="ilpublicuserprofilegui")
Default behaviour is:
setRowTemplate($a_template, $a_template_dir="")
Set row template.
const SCHEDULE_TYPE_YEARLY
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
formatResult(ilCronJobEntity $entity)
__construct(Container $dic, ilPlugin $plugin)
addColumn( $a_text, $a_sort_field="", $a_width="", $a_is_checkbox_action_column=false, $a_class="", $a_tooltip="", $a_tooltip_with_html=false)
Add a column to the header.
const SCHEDULE_TYPE_DAILY
const SCHEDULE_TYPE_QUARTERLY
static updateJobSchedule(ilCronJob $a_job, $a_schedule_type, $a_schedule_value)
Update job schedule.
Class ilCronJobCollection.
const SCHEDULE_TYPE_IN_HOURS
List all active cron jobs.
populate(ilCronJobCollection $collection)