19 declare(strict_types=1);
38 private readonly
string $target_url,
39 private readonly
bool $lucene_enabled,
41 private readonly
Factory $ui_factory,
47 if ($this->folder->hasIncomingMails()) {
48 $inputs[
'sender'] = $this->ui_factory->input()->field()->text($this->
lng->txt(
'mail_filter_sender'));
50 $inputs[
'recipients'] = $this->ui_factory->input()->field()->text(
51 $this->
lng->txt(
'mail_filter_recipients')
55 $inputs[
'subject'] = $this->ui_factory->input()->field()->text($this->
lng->txt(
'mail_filter_subject'));
56 $inputs[
'body'] = $this->ui_factory->input()->field()->text($this->
lng->txt(
'mail_filter_body'));
58 if ($this->lucene_enabled) {
59 $inputs[
'attachment'] = $this->ui_factory->input()->field()->text($this->
lng->txt(
'mail_filter_attach'));
62 $inputs[
'display'] = $this->ui_factory->input()->field()->multiSelect($this->
lng->txt(
'mail_filter_display'), [
63 'read' => $this->
lng->txt(
'mail_filter_show_read'),
64 'unread' => $this->
lng->txt(
'mail_filter_show_unread'),
65 'user' => $this->
lng->txt(
'mail_filter_show_user_mails'),
66 'system' => $this->
lng->txt(
'mail_filter_show_system_mails'),
67 'with_attachment' => $this->
lng->txt(
'mail_filter_show_with_attachments'),
68 'without_attachment' => $this->
lng->txt(
'mail_filter_show_without_attachment')
70 $inputs[
'period'] = $this->ui_factory
71 ->input()->field()->duration($this->
lng->txt(
'mail_filter_period'))
72 ->withTimezone($this->user_time_zone->getName());
74 $this->
filter = $this->filter_service->standard(
99 $data = $this->filter_service->getData($this->
filter);
103 $has_attachment =
null;
106 if (is_array($display =
$data[
'display'] ??
null)) {
107 if (in_array(
'read', $display) xor in_array(
'unread', $display)) {
108 $is_unread = in_array(
'unread', $display);
110 if (in_array(
'system', $display) xor in_array(
'user', $display)) {
111 $is_system = in_array(
'system', $display);
113 if (in_array(
'with_attachment', $display) xor in_array(
'without_attachment', $display)) {
114 $has_attachment = in_array(
'with_attachment', $display);
119 if ((
$data[
'period'][0] ??
'') !==
'') {
123 if ((
$data[
'period'][1] ??
'') !==
'') {
128 (
$data[
'sender'] ??
'') ===
'' ? null : (
string)
$data[
'sender'],
129 ($data[
'recipients'] ??
'') ===
'' ? null : (
string) $data[
'recipients'],
130 ($data[
'subject'] ??
'') ===
'' ? null : (
string) $data[
'subject'],
131 ($data[
'body'] ??
'') ===
'' ? null : $data[
'body'],
132 ($data[
'attachment'] ??
'') ===
'' ? null : (
string) $data[
'attachment'],
Filter input for mail folders.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This is how the factory for UI elements looks.
getData()
Get the user entered filter data.
Filter data for display of mail records Properties with null value will not be applied as a filter...
getComponent()
Get the filter UI component.
filter(string $filter_id, $class_path, string $cmd, bool $activated=true, bool $expanded=true)
__construct(private readonly string $target_url, private readonly bool $lucene_enabled, private readonly MailFolderData $folder, private readonly Factory $ui_factory, private readonly ilUIFilterService $filter_service, private readonly ilLanguage $lng, private readonly DateTimeZone $user_time_zone)