24 lines
1.0 KiB
PHP
24 lines
1.0 KiB
PHP
<li class="hide-mobile">
|
|
<a
|
|
href="?action=mark-item-removed&id=<?= $item['id'] ?>&offset=<?= $offset ?>&redirect=<?= $menu ?>&feed_id=<?= $item['feed_id'] ?>"
|
|
data-action="mark-removed"
|
|
class="delete"
|
|
><?= t('remove') ?></a>
|
|
</li>
|
|
<li class="hide-mobile">
|
|
<?php if ($item['status'] == 'unread'): ?>
|
|
<a
|
|
class="mark"
|
|
href="?action=mark-item-read&id=<?= $item['id'] ?>&offset=<?= $offset ?>&redirect=<?= $menu ?>&feed_id=<?= $item['feed_id'] ?>"
|
|
data-action="mark-read"
|
|
data-reverse-label="<?= t('mark as unread') ?>"
|
|
><?= t('mark as read') ?></a>
|
|
<?php else: ?>
|
|
<a
|
|
class="mark"
|
|
href="?action=mark-item-unread&id=<?= $item['id'] ?>&offset=<?= $offset ?>&redirect=<?= $menu ?>&feed_id=<?= $item['feed_id'] ?>"
|
|
data-action="mark-unread"
|
|
data-reverse-label="<?= t('mark as read') ?>"
|
|
><?= t('mark as unread') ?></a>
|
|
<?php endif ?>
|
|
</li>
|