1 <?php declare(strict_types=1);
41 if (!method_exists(
$parentGui,
'executeCommand')) {
43 'Parameter $parentGui must be ilCtrl enabled by implementing executeCommand(), %s given.',
50 $this->ctrl = $DIC->ctrl();
52 $this->lng = $DIC->language();
53 $this->
user = $DIC->user();
65 protected function init() : void
67 $this->
setTitle($this->lng->txt(
'mail_settings'));
68 $this->
setFormAction($this->ctrl->getFormAction($this->parentGui, $this->positiveCmd));
70 if ($this->options->maySeeIndividualTransportSettings()) {
72 $this->lng->txt(
'mail_incoming'),
76 $this->
addItem($incoming_mail_gui);
80 for (
$i = 50;
$i <= 80;
$i++) {
92 if ($this->
settings->get(
'mail_notification')) {
93 $cb =
new ilCheckboxInputGUI($this->lng->txt(
'cron_mail_notification'),
'cronjob_notification');
94 $cb->
setInfo($this->lng->txt(
'mail_cronjob_notification_info'));
111 if ($this->options->mayModifyIndividualTransportSettings()) {
112 $incoming_type = (int) $this->
getInput(
'incoming_type');
114 $mail_address_option = $this->options->getEmailAddressMode();
115 switch ($incoming_type) {
117 $mail_address_option = (int) $this->
getInput(
'mail_address_option');
121 $mail_address_option = (int) $this->
getInput(
'mail_address_option_both');
125 $incoming_type = $this->options->getIncomingType();
126 $mail_address_option = $this->options->getEmailAddressMode();
129 $this->options->setLinebreak((
int) $this->
getInput(
'linebreak'));
130 $this->options->setSignature((
string) $this->
getInput(
'signature'));
131 $this->options->setIsCronJobNotificationStatus((
bool) $this->
getInput(
'cronjob_notification'));
132 $this->options->setIncomingType((
int) $incoming_type);
133 $this->options->setEmailAddressMode((
int) $mail_address_option);
135 $this->options->updateOptions();
146 'linebreak' => $this->options->getLinebreak(),
147 'signature' => $this->options->getSignature(),
148 'cronjob_notification' => $this->options->isCronJobNotificationEnabled()
151 if ($this->options->maySeeIndividualTransportSettings()) {
152 $data[
'incoming_type'] = $this->options->getIncomingType();
154 $mail_address_option = $this->options->getEmailAddressMode();
156 $data[
'mail_address_option'] = $mail_address_option;
157 $data[
'mail_address_option_both'] = $mail_address_option;
Class ilMailOptions this class handles user mails.
setRows($a_rows)
Set Rows.
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.