72 lines
2.5 KiB
PHTML
72 lines
2.5 KiB
PHTML
<?php if (! $this->compact): ?>
|
|
<div class="controls">
|
|
<?= $this->tabs ?>
|
|
<?= $this->paginator ?>
|
|
<div class="sort-controls-container">
|
|
<?= $this->limiter ?>
|
|
<?= $this->sortBox ?>
|
|
</div>
|
|
<?= $this->filterEditor ?>
|
|
</div>
|
|
<?php endif ?>
|
|
<div class="content">
|
|
<?php if ($this->hasPermission('application/announcements')) {
|
|
echo $this->qlink(
|
|
$this->translate('Create a New Announcement') ,
|
|
'announcements/new',
|
|
null,
|
|
array(
|
|
'class' => 'button-link',
|
|
'data-base-target' => '_next',
|
|
'icon' => 'plus',
|
|
'title' => $this->translate('Create a new announcement')
|
|
)
|
|
);
|
|
} ?>
|
|
<?php if (empty($this->announcements)): ?>
|
|
<p><?= $this->translate('No announcements found.') ?></p>
|
|
</div>
|
|
<?php return; endif ?>
|
|
<table data-base-target="_next" class="table-row-selectable common-table">
|
|
<thead>
|
|
<tr>
|
|
<th><?= $this->translate('Author') ?></th>
|
|
<th><?= $this->translate('Message') ?></th>
|
|
<th><?= $this->translate('Start') ?></th>
|
|
<th><?= $this->translate('End') ?></th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach ($this->announcements as $announcement): /** @var object $announcement */ ?>
|
|
<tr>
|
|
<td><?= $this->escape($announcement->author) ?></td>
|
|
<?php if ($this->hasPermission('application/announcements')): ?>
|
|
<td>
|
|
<a href="<?= $this->href('announcements/update', array('id' => $announcement->id)) ?>">
|
|
<?= $this->ellipsis($this->escape($announcement->message), 100) ?>
|
|
</a>
|
|
</td>
|
|
<?php else: ?>
|
|
<td><?= $this->ellipsis($this->escape($announcement->message), 100) ?></td>
|
|
<?php endif ?>
|
|
<td><?= $this->formatDateTime($announcement->start) ?></td>
|
|
<td><?= $this->formatDateTime($announcement->end) ?></td>
|
|
<?php if ($this->hasPermission('application/announcements')): ?>
|
|
<td class="icon-col"><?= $this->qlink(
|
|
null,
|
|
'announcements/remove',
|
|
array('id' => $announcement->id),
|
|
array(
|
|
'class' => 'action-link',
|
|
'icon' => 'cancel',
|
|
'title' => $this->translate('Remove this announcement')
|
|
)
|
|
) ?></td>
|
|
<?php endif ?>
|
|
</tr>
|
|
<?php endforeach ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|