mirror of
https://github.com/Karaka-Management/oms-News.git
synced 2026-01-11 08:08:42 +00:00
69 lines
2.6 KiB
PHP
Executable File
69 lines
2.6 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.2
|
|
*
|
|
* @package Modules\News
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
use \phpOMS\Uri\UriFactory;
|
|
use phpOMS\Utils\Parser\Markdown\Markdown;
|
|
|
|
/** @var \phpOMS\Views\View $this */
|
|
/** @var \Modules\News\Models\NewsArticle[] $newsList */
|
|
$newsList = $this->data['news'];
|
|
$seen = $this->data['seen'] ?? [];
|
|
|
|
$previous = empty($newsList) ? 'news/dashboard' : 'news/dashboard?{?}&id=' . \reset($newsList)->id . '&ptype=p';
|
|
$next = empty($newsList) ? 'news/dashboard' : 'news/dashboard?{?}&id=' . \end($newsList)->id . '&ptype=n';
|
|
|
|
echo $this->data['nav']->render(); ?>
|
|
<div class="row">
|
|
<div class="col-xs-12">
|
|
<?php foreach ($newsList as $news) :
|
|
$url = UriFactory::build('{/base}/news/article?id=' . $news->id);
|
|
$profile = UriFactory::build('profile/view?{?}&id=' . $news->createdBy->id);
|
|
?>
|
|
<div class="portlet">
|
|
<div class="portlet-head">
|
|
<?= ($isSeen = \in_array($news->id, $seen)) ? '' : '<strong>'; ?>
|
|
<a href="<?= $url; ?>"><?= $this->printHtml($news->title); ?></a>
|
|
<?= $isSeen ? '' : '</strong>'; ?>
|
|
<span class="end-xs">
|
|
<?= $news->publish->format('Y-m-d'); ?>
|
|
</span>
|
|
|
|
</div>
|
|
<div class="portlet-body">
|
|
<article><?= Markdown::parse(\substr($news->plain, 0, 500)); ?></article>
|
|
<?php foreach ($news->tags as $tag) : ?>
|
|
<span class="tag" style="background: <?= $this->printHtml($tag->color); ?>">
|
|
<?= empty($tag->icon) ? '' : '<i class="g-icon">' . $this->printHtml($tag->icon) . '</i>'; ?>
|
|
<?= $this->printHtml($tag->getL11n()); ?>
|
|
</span>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
<div class="portlet-foot">
|
|
<div class="overflowfix">
|
|
<a tabindex="0" href="<?= $url; ?>" class="button"><?= $this->getHtml('More', '0', '0'); ?></a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
<?php if (empty($newsList)) : ?>
|
|
<div class="emptyPage"></div>
|
|
<?php else : ?>
|
|
<div class="plain-portlet">
|
|
<a tabindex="0" class="button" href="<?= UriFactory::build($previous); ?>"><?= $this->getHtml('Previous', '0', '0'); ?></a>
|
|
<a tabindex="0" class="button" href="<?= UriFactory::build($next); ?>"><?= $this->getHtml('Next', '0', '0'); ?></a>
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|