4 include_once
'./Services/Table/classes/class.ilTable2GUI.php';
5 include_once
'./Services/Cron/classes/class.ilCronJobResult.php';
39 $this->controller =
$dic->ctrl();
42 $this->
setId(
"crnmng");
46 if ($this->mayWrite) {
49 $this->
addColumn($this->lng->txt(
"cron_job_id"),
"title");
50 $this->
addColumn($this->lng->txt(
"cron_component"),
"component");
51 $this->
addColumn($this->lng->txt(
"cron_schedule"),
"schedule");
52 $this->
addColumn($this->lng->txt(
"cron_status"),
"status");
53 $this->
addColumn($this->lng->txt(
"cron_status_info"),
"");
54 $this->
addColumn($this->lng->txt(
"cron_result"),
"result");
55 $this->
addColumn($this->lng->txt(
"cron_result_info"),
"");
56 $this->
addColumn($this->lng->txt(
"cron_last_run"),
"last_run");
57 if ($this->mayWrite) {
58 $this->
addColumn($this->lng->txt(
"actions"),
"");
61 $this->
setTitle($this->lng->txt(
"cron_jobs"));
64 if ($this->mayWrite) {
72 $this->
setFormAction($this->controller->getFormAction($a_parent_obj, $a_parent_cmd));
86 $res[
"title"] = $a_item[
"job_id"];
92 if ($a_item[
"schedule_type"]) {
98 $res[
"editable_schedule"] =
false;
101 if (!$a_item[
"schedule_type"]) {
106 $a_item[
"schedule_type"],
107 $a_item[
"schedule_value"]
111 $res[
"editable_schedule"] =
true;
114 switch ($a_item[
"schedule_type"]) {
116 $schedule = $this->
language->txt(
"cron_schedule_daily");
120 $schedule = $this->
language->txt(
"cron_schedule_weekly");
124 $schedule = $this->
language->txt(
"cron_schedule_monthly");
128 $schedule = $this->
language->txt(
"cron_schedule_quarterly");
132 $schedule = $this->
language->txt(
"cron_schedule_yearly");
136 $schedule = sprintf($this->
language->txt(
"cron_schedule_in_minutes"), $a_item[
"schedule_value"]);
140 $schedule = sprintf($this->
language->txt(
"cron_schedule_in_hours"), $a_item[
"schedule_value"]);
144 $schedule = sprintf($this->
language->txt(
"cron_schedule_in_days"), $a_item[
"schedule_value"]);
147 $res[
"schedule"] = $schedule;
150 if ($a_item[
"job_status"]) {
151 $res[
"status"] = $this->
language->txt(
"cron_status_active");
153 $res[
"status"] = $this->
language->txt(
"cron_status_inactive");
156 $status_info = array();
157 if ($a_item[
"job_status_ts"]) {
160 if (!$a_item[
"job_status_type"]) {
161 $status_info[] = $this->
language->txt(
"cron_changed_by_crontab");
165 $res[
"status_info"] = implode(
"<br />", $status_info);
169 if ($a_item[
"job_result_status"]) {
170 switch ($a_item[
"job_result_status"]) {
172 $result = $this->
language->txt(
"cron_result_status_invalid_configuration");
198 $result_info = array();
199 if ($a_item[
"job_result_dur"]) {
200 $result_info[] = ($a_item[
"job_result_dur"] / 1000) .
" sec";
204 $resultCode = $a_item[
'job_result_code'];
206 $result_info[] = $this->
language->txt(
'cro_job_rc_' . $resultCode);
208 if ($a_item[
'job_result_message']) {
209 $result_info[] = $a_item[
'job_result_message'];
213 if (defined(
'DEVMODE') && DEVMODE) {
214 $result_info[] = $resultCode;
217 if (!$a_item[
"job_result_type"]) {
218 $result_info[] = $this->
language->txt(
"cron_changed_by_crontab");
222 $res[
"result_info"] = implode(
"<br />", $result_info);
224 if ($a_item[
"running_ts"]) {
225 $res[
"last_run"] = strtotime(
"+1year", $a_item[
"running_ts"]);
226 } elseif ($a_item[
"job_result_ts"]) {
227 $res[
"last_run"] = $a_item[
"job_result_ts"];
229 $res[
"last_run"] = null;
239 include_once
"Services/User/classes/class.ilUserUtil.php";
240 include_once
"Services/Cron/classes/class.ilCronJobResult.php";
244 foreach (
$data as $idx => $item) {
257 $this->
language->loadLanguageModule(
"cmps");
262 $item[
"job_id"] =
"pl__" . $item[
"component"] .
"__" . $job->getId();
263 $item[
"component"] = $this->
language->txt(
"cmps_plugin") .
"/" . $item[
"component"];
273 if ($this->mayWrite) {
274 $this->tpl->setVariable(
"VAL_JID", $a_set[
"job_id"]);
276 $this->tpl->setVariable(
"VAL_ID", $a_set[
"title"]);
278 if ($a_set[
"description"]) {
279 $this->tpl->setVariable(
"VAL_DESC", $a_set[
"description"]);
282 $this->tpl->setVariable(
"VAL_COMPONENT", $a_set[
"component"]);
283 $this->tpl->setVariable(
"VAL_SCHEDULE", $a_set[
"schedule"]);
284 $this->tpl->setVariable(
"VAL_STATUS", $a_set[
"status"]);
285 $this->tpl->setVariable(
"VAL_STATUS_INFO", $a_set[
"status_info"]);
286 $this->tpl->setVariable(
"VAL_RESULT", $a_set[
"result"]);
287 $this->tpl->setVariable(
"VAL_RESULT_INFO", $a_set[
"result_info"]);
288 if ($a_set[
"last_run"] > time()) {
289 $a_set[
"last_run"] = $this->
language->txt(
"cron_running_since") .
" " .
293 if ($a_set[
"alive_ts"] != $a_set[
"running_ts"]) {
294 $a_set[
"last_run"] .=
"<br />(Ping: " .
297 } elseif ($a_set[
"last_run"]) {
300 $this->tpl->setVariable(
"VAL_LAST_RUN", $a_set[
"last_run"] ? $a_set[
"last_run"] :
"-");
307 if ($this->mayWrite && !$a_set[
"running_ts"]) {
310 $actions[] =
"reset";
313 elseif (!$a_set[
"job_status"]) {
314 $actions[] =
"activate";
318 if ($a_set[
'is_manually_executable']) {
321 $actions[] =
"deactivate";
324 if ($a_set[
"editable_schedule"] || $a_set[
"has_settings"]) {
328 $this->controller->setParameter($this->
getParentObject(),
"jid", $a_set[
"job_id"]);
330 foreach ($actions as $action) {
331 $this->tpl->setCurrentBlock(
"action_bl");
332 $this->tpl->setVariable(
334 $this->controller->getLinkTarget($this->getParentObject(), $action)
336 $this->tpl->setVariable(
"TXT_ACTION", $this->
language->txt(
"cron_action_" . $action));
337 $this->tpl->parseCurrentBlock();
static getJobInstance($a_id, $a_component, $a_class, $a_path=null)
Get job instance (by job data)
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
const STATUS_INVALID_CONFIGURATION
__construct($a_parent_obj, $a_parent_cmd, \ILIAS\DI\Container $dic=null, bool $mayWrite=false)
Constructor.
Cron job application base class.
Class ChatMainBarProvider .
const SCHEDULE_TYPE_IN_MINUTES
getDescription()
Get description.
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.
static getCronJobData($a_id=null, $a_include_inactive=true)
Get cron job configuration/execution data.
foreach($_POST as $key=> $value) $res
hasFlexibleSchedule()
Can the schedule be configured?
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
hasCustomSettings()
Has cron job any custom setting which can be edited?
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.
getDefaultScheduleType()
Get schedule type.
__construct(Container $dic, ilPlugin $plugin)
static getPluginJobs($a_only_active=false)
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
getDefaultScheduleValue()
Get schedule value.
const SCHEDULE_TYPE_QUARTERLY
static updateJobSchedule(ilCronJob $a_job, $a_schedule_type, $a_schedule_value)
Update job schedule.
const SCHEDULE_TYPE_IN_HOURS
isManuallyExecutable()
Defines whether or not a cron job can be started manually.
parseJobToData(array $a_item, ilCronJob $job)
List all active cron jobs.