5 declare(strict_types = 1);
7 use \ILIAS\UI\Component\Input\Field;
8 use \ILIAS\Refinery\Factory as
Refinery;
33 !is_null($reminder_not_restarted_by_user_days) &&
34 1 > $reminder_not_restarted_by_user_days
37 'Numbers less than 1 are not allowed' 42 !is_null($processing_ends_not_successful_days) &&
43 1 > $processing_ends_not_successful_days
46 'Numbers less than 1 are not allowed' 73 $clone->send_re_assigned_mail = $do_it;
80 if (!is_null($days) && 1 > $days) {
82 'Numbers less than 1 are not allowed' 87 $clone->reminder_not_restarted_by_user_days = $days;
94 if (!is_null($days) && 1 > $days) {
96 'Numbers less than 1 are not allowed' 100 $clone->processing_ends_not_successful_days = $days;
106 return $input->section(
108 "send_re_assigned_mail" => $input->checkbox(
109 $ilLng->
txt(
"send_re_assigned_mail"),
110 $ilLng->
txt(
'send_re_assigned_mail_info')
114 "prg_user_not_restarted_time_input" => $input->optionalGroup(
116 $ilLng->
txt(
'prg_user_not_restarted_time_input'),
117 $ilLng->
txt(
'prg_user_not_restarted_time_input_info')
118 )->withAdditionalTransformation($refinery->int()->isGreaterThan(0))],
119 $ilLng->
txt(
"send_info_to_re_assign_mail"),
120 $ilLng->
txt(
"send_info_to_re_assign_mail_info")
124 "processing_ends_not_success" => $input->optionalGroup(
126 $ilLng->
txt(
'prg_processing_ends_no_success'),
127 $ilLng->
txt(
'prg_processing_ends_no_success_info')
128 )->withAdditionalTransformation($refinery->int()->isGreaterThan(0))],
129 $ilLng->
txt(
"send_risky_to_fail_mail"),
130 $ilLng->
txt(
"send_risky_to_fail_mail_info")
134 $ilLng->
txt(
"prg_cron_job_configuration")
136 ->withAdditionalTransformation($refinery->custom()->transformation(
function ($vals) {
137 return new \ilStudyProgrammeAutoMailSettings(
138 $vals[
"send_re_assigned_mail"],
139 isset($vals[
"prg_user_not_restarted_time_input"]) ? (
int) $vals[
"prg_user_not_restarted_time_input"][0] : null,
140 isset($vals[
"processing_ends_not_success"]) ? (
int) $vals[
"processing_ends_not_success"][0] : null
withSendReAssignedMail(bool $do_it)
__construct(bool $send_re_assigned_mail, ?int $reminder_not_restarted_by_user_days, ?int $processing_ends_not_successful_days)
$reminder_not_restarted_by_user_days
$processing_ends_not_successful_days
toFormInput(Field\Factory $input, \ilLanguage $ilLng, Refinery $refinery)
withProcessingEndsNotSuccessfulDays(?int $days)
getReminderNotRestartedByUserDays()
txt($a_topic, $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
getProcessingEndsNotSuccessfulDays()
withReminderNotRestartedByUserDays(?int $days)