ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMailCronNotification.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
25 
31 {
33  protected ilLanguage $lng;
34  protected ilSetting $settings;
35  protected bool $initDone = false;
36 
37  protected function init(): void
38  {
39  global $DIC;
40 
41  if (!$this->initDone) {
42  $this->settings = $DIC->settings();
43  $this->lng = $DIC->language();
44  $this->http = $DIC->http();
45 
46  $this->initDone = true;
47  }
48  }
49 
50  public function getId(): string
51  {
52  return 'mail_notification';
53  }
54 
55  public function getTitle(): string
56  {
57  $this->init();
58 
59  return $this->lng->txt('cron_mail_notification');
60  }
61 
62  public function getDescription(): string
63  {
64  $this->init();
65 
66  $this->lng->loadLanguageModule('mail');
67 
68  return sprintf(
69  $this->lng->txt('cron_mail_notification_desc'),
70  $this->lng->txt('mail_allow_external')
71  );
72  }
73 
75  {
76  return JobScheduleType::DAILY;
77  }
78 
79  public function getDefaultScheduleValue(): ?int
80  {
81  return null;
82  }
83 
84  public function hasAutoActivation(): bool
85  {
86  return false;
87  }
88 
89  public function hasFlexibleSchedule(): bool
90  {
91  return false;
92  }
93 
94  public function hasCustomSettings(): bool
95  {
96  return true;
97  }
98 
99  public function usesLegacyForms(): bool
100  {
101  return false;
102  }
103 
105  \ILIAS\UI\Factory $ui_factory,
106  \ILIAS\Refinery\Factory $factory,
107  ilLanguage $lng
108  ): \ILIAS\UI\Component\Input\Container\Form\FormInput {
109  $status = $ui_factory
110  ->input()
111  ->field()
112  ->checkbox($this->lng->txt('cron_mail_notification_message'))
113  ->withByline($this->lng->txt('cron_mail_notification_message_info'))
114  ->withValue((bool) $this->settings->get('mail_notification_message', '0'))
115  ->withDedicatedName('mail_notification_message');
116 
117  return $status;
118  }
119 
120  public function saveCustomConfiguration(mixed $form_data): void
121  {
122  $this->init();
123  $this->settings->set(
124  'mail_notification_message',
125  (string) ((int) $form_data)
126  );
127  }
128 
129  public function run(): JobResult
130  {
131  $msn = new ilMailSummaryNotification();
132  $msn->send();
133 
134  $result = new JobResult();
135  $result->setStatus(JobResult::STATUS_OK);
136  return $result;
137  }
138 
139  public function addCustomSettingsToForm(ilPropertyFormGUI $a_form): void
140  {
141  throw new RuntimeException('Not implemented');
142  }
143 
144  public function saveCustomSettings(ilPropertyFormGUI $a_form): bool
145  {
146  throw new RuntimeException('Not implemented');
147  }
148 
149  public function activationWasToggled(ilDBInterface $db, ilSetting $setting, bool $a_currently_active): void
150  {
151  $setting->set('mail_notification', (string) ((int) $a_currently_active));
152  }
153 }
saveCustomSettings(ilPropertyFormGUI $a_form)
Interface Observer Contains several chained tasks and infos about them.
set(string $a_key, string $a_val)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static http()
Fetches the global http state from ILIAS.
getCustomConfigurationInput(\ILIAS\UI\Factory $ui_factory, \ILIAS\Refinery\Factory $factory, ilLanguage $lng)
global $DIC
Definition: shib_login.php:22
activationWasToggled(ilDBInterface $db, ilSetting $setting, bool $a_currently_active)
addCustomSettingsToForm(ilPropertyFormGUI $a_form)
withValue($value)
Get an input like this with another value displayed on the client side.
Definition: Group.php:61