mangadex/templates/bootstrap4/forum/post_history.tpl.php

23 lines
575 B
PHP
Raw Permalink Normal View History

2021-03-14 17:31:55 -04:00
<?php
/**
* Created by PhpStorm.
* User: icelord
* Date: 24.01.19
* Time: 17:31
*/
$last_entry = end($templateVar['posts']);
foreach($templateVar['posts'] AS $post) { ?>
<h5><?= get_time_ago($post->timestamp) ?> by <?= display_user_link($post->user_id, $post->username, $post->editor_level_colour) ?></h5>
<div class="post">
<?php $templateVar['parser']->parse($post->text); ?>
<?= nl2br(make_links_clickable($templateVar['parser']->getAsHtml())) ?>
</div>
<?php if ($last_entry !== $post) { ?>
<hr>
<?php } ?>
<?php } ?>