mirror of
https://github.com/Karaka-Management/oms-Messages.git
synced 2026-02-12 23:38:41 +00:00
autofixes
This commit is contained in:
parent
59ef13e449
commit
171daa976c
|
|
@ -13,37 +13,37 @@
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
return ['Messages' => [
|
return ['Messages' => [
|
||||||
'All' => 'All',
|
'All' => 'All',
|
||||||
'AverageAmount' => 'Avg. Amount',
|
'AverageAmount' => 'Avg. Amount',
|
||||||
'BCC' => 'BCC',
|
'BCC' => 'BCC',
|
||||||
'CC' => 'CC',
|
'CC' => 'CC',
|
||||||
'Channels' => 'Channels',
|
'Channels' => 'Channels',
|
||||||
'Chat' => 'Chat',
|
'Chat' => 'Chat',
|
||||||
'Date' => 'Date',
|
'Date' => 'Date',
|
||||||
'Delete' => 'Delete',
|
'Delete' => 'Delete',
|
||||||
'Draft' => 'Draft',
|
'Draft' => 'Draft',
|
||||||
'Email' => 'Email',
|
'Email' => 'Email',
|
||||||
'From' => 'From',
|
'From' => 'From',
|
||||||
'Inbox' => 'Inbox',
|
'Inbox' => 'Inbox',
|
||||||
'Interval' => 'Interval',
|
'Interval' => 'Interval',
|
||||||
'Mailboxes' => 'Mailboxes',
|
'Mailboxes' => 'Mailboxes',
|
||||||
'Messages' => 'Messages',
|
'Messages' => 'Messages',
|
||||||
'Templates' => 'Templates',
|
'Templates' => 'Templates',
|
||||||
'Month' => 'Month',
|
'Month' => 'Month',
|
||||||
'New' => 'New',
|
'New' => 'New',
|
||||||
'Outbox' => 'Outbox',
|
'Outbox' => 'Outbox',
|
||||||
'Received' => 'Received',
|
'Received' => 'Received',
|
||||||
'Save' => 'Save',
|
'Save' => 'Save',
|
||||||
'Select' => 'Select',
|
'Select' => 'Select',
|
||||||
'Sent' => 'Sent',
|
'Sent' => 'Sent',
|
||||||
'Spam' => 'Spam',
|
'Spam' => 'Spam',
|
||||||
'Statistics' => 'Statistics',
|
'Statistics' => 'Statistics',
|
||||||
'Status' => 'Status',
|
'Status' => 'Status',
|
||||||
'Subject' => 'Subject',
|
'Subject' => 'Subject',
|
||||||
'Tag' => 'Tag',
|
'Tag' => 'Tag',
|
||||||
'To' => 'To',
|
'To' => 'To',
|
||||||
'Today' => 'Today',
|
'Today' => 'Today',
|
||||||
'Trash' => 'Trash',
|
'Trash' => 'Trash',
|
||||||
'Week' => 'Week',
|
'Week' => 'Week',
|
||||||
'Year' => 'Year',
|
'Year' => 'Year',
|
||||||
]];
|
]];
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,6 @@
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
use phpOMS\Localization\ISO639Enum;
|
use phpOMS\Localization\ISO639Enum;
|
||||||
use phpOMS\Uri\UriFactory;
|
|
||||||
use phpOMS\Utils\Formatter\HtmlFormatter;
|
use phpOMS\Utils\Formatter\HtmlFormatter;
|
||||||
|
|
||||||
$mail = $this->data['template'];
|
$mail = $this->data['template'];
|
||||||
|
|
|
||||||
|
|
@ -43,7 +43,7 @@ echo $this->data['nav']->render(); ?>
|
||||||
<?php $count = 0;
|
<?php $count = 0;
|
||||||
foreach ($messages as $key => $value) : ++$count;
|
foreach ($messages as $key => $value) : ++$count;
|
||||||
$url = UriFactory::build('{/base}/messages/template/single?{?}&id=' . $value->id); ?>
|
$url = UriFactory::build('{/base}/messages/template/single?{?}&id=' . $value->id); ?>
|
||||||
<tr data-href="<?= $url ?>">
|
<tr data-href="<?= $url; ?>">
|
||||||
<td><span class="check"><input type="checkbox" name=""></span>
|
<td><span class="check"><input type="checkbox" name=""></span>
|
||||||
<td><a href="<?= $url; ?>"><?= $this->printHtml(empty($value->subject) ? $value->getL11nByLanguage($this->response->header->l11n->language)->subject : $value->subject); ?></a>
|
<td><a href="<?= $url; ?>"><?= $this->printHtml(empty($value->subject) ? $value->getL11nByLanguage($this->response->header->l11n->language)->subject : $value->subject); ?></a>
|
||||||
<td><a href="<?= $url; ?>"><?= $this->printHtml($value->createdAt->format('Y-m-d')); ?></a>
|
<td><a href="<?= $url; ?>"><?= $this->printHtml($value->createdAt->format('Y-m-d')); ?></a>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user