19 declare(strict_types=1);
37 protected string $positiveCmd,
40 if (!method_exists($parentGui,
'executeCommand')) {
42 'Parameter $parentGui must be ilCtrlInterface enabled by implementing executeCommand(), %s given.',
50 $this->positiveCmd = $positiveCmd;
52 $this->default_auto_responder_absence_end_ts = time() + 8640;
57 protected function init(): void
60 $this->
setFormAction($this->
ctrl->getFormAction($this->parentGui, $this->positiveCmd));
62 if ($this->options->maySeeIndividualTransportSettings()) {
64 $this->
lng->txt(
'mail_incoming'),
68 $this->
addItem($incoming_mail_gui);
72 $absence->setInfo($this->
lng->txt(
'mail_absence_status_info'));
73 $absence->setValue(
"1");
74 $this->
lng->loadLanguageModule(
'dateplaner');
77 $duration->setStartText($this->
lng->txt(
'mail_absent_from'));
78 $duration->setEndText($this->
lng->txt(
'mail_absent_until'));
80 $auto_responder_subject =
new ilTextInputGUI($this->
lng->txt(
'mail_absence_auto_responder_subject'),
'absence_auto_responder_subject');
81 $auto_responder_subject->setMaxLength(200);
82 $auto_responder_subject->setRequired(
true);
83 $auto_responder_body =
new ilTextAreaInputGUI($this->
lng->txt(
'mail_absence_auto_responder_body'),
'absence_auto_responder_body');
84 $idle_time = (
int) $this->
settings->get(
'mail_auto_responder_idle_time', (
string) AutoresponderService::AUTO_RESPONDER_DEFAULT_IDLE_TIME);
85 if ($idle_time === 1) {
86 $auto_responder_body->setInfo($this->
lng->txt(
'mail_absence_auto_responder_body_info_single_day'));
88 $auto_responder_body->setInfo(sprintf($this->
lng->txt(
'mail_absence_auto_responder_body_info'), $idle_time));
90 $auto_responder_body->setRequired(
true);
91 $auto_responder_body->setCols(60);
92 $auto_responder_body->setRows(10);
94 $absence->addSubItem($auto_responder_subject);
95 $absence->addSubItem($auto_responder_body);
103 if ($this->
settings->get(
'mail_notification',
'0')) {
105 $this->
lng->txt(
'cron_mail_notification'),
106 'cronjob_notification' 108 $cb->setInfo($this->
lng->txt(
'mail_cronjob_notification_info'));
122 if ($this->options->mayModifyIndividualTransportSettings()) {
123 $incoming_type = (
int) $this->
getInput(
'incoming_type');
125 $mail_address_option = $this->options->getEmailAddressMode();
126 switch ($incoming_type) {
128 $mail_address_option = (
int) $this->
getInput(
'mail_address_option');
132 $mail_address_option = (
int) $this->
getInput(
'mail_address_option_both');
136 $incoming_type = $this->options->getIncomingType();
137 $mail_address_option = $this->options->getEmailAddressMode();
141 $absence_status = (bool) $this->
getInput(
'absence_status');
142 $old_absence_status = $this->options->getAbsenceStatus();
143 if (!$absence_status && $old_absence_status) {
144 $this->autoResponderRepository->deleteBySenderId($this->
user->getId());
146 $this->options->setAbsenceStatus((
bool) $this->
getInput(
'absence_status'));
147 if ($absence_duration && $absence_duration->getStart() && $absence_duration->getEnd()) {
148 $this->options->setAbsentFrom($absence_duration->getStart()->get(
IL_CAL_UNIX));
149 $this->options->setAbsentUntil($absence_duration->getEnd()->get(
IL_CAL_UNIX));
151 $this->options->setAbsenceAutoresponderSubject($this->
getInput(
'absence_auto_responder_subject'));
152 $this->options->setAbsenceAutoresponderBody($this->
getInput(
'absence_auto_responder_body'));
154 $this->options->setSignature($this->
getInput(
'signature'));
155 $this->options->setIsCronJobNotificationStatus((
bool) $this->
getInput(
'cronjob_notification'));
156 $this->options->setIncomingType($incoming_type);
157 $this->options->setEmailAddressMode($mail_address_option);
159 $this->options->updateOptions();
167 'signature' => $this->options->getSignature(),
168 'cronjob_notification' => $this->options->isCronJobNotificationEnabled(),
169 'absence_status' => $this->options->getAbsenceStatus(),
170 'absence_duration' => [
174 'absence_auto_responder_subject' => $this->options->getAbsenceAutoresponderSubject(),
175 'absence_auto_responder_body' => $this->options->getAbsenceAutoresponderBody(),
178 if ($this->options->maySeeIndividualTransportSettings()) {
179 $data[
'incoming_type'] = $this->options->getIncomingType();
181 $mail_address_option = $this->options->getEmailAddressMode();
183 $data[
'mail_address_option'] = $mail_address_option;
184 $data[
'mail_address_option_both'] = $mail_address_option;
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
final const INCOMING_EMAIL
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.
final const INCOMING_BOTH