ForumTopicRender.php in Opigno forum 3.x
File
src/ForumTopicRender.php
View source
<?php
namespace Drupal\opigno_forum;
class ForumTopicRender {
public function preprocessForumLastTopicsBlock(array &$variables) : void {
foreach ($variables["elements"]["topics"] as $index => $topic) {
$variables["elements"]["topics"][$index] = [
'#theme' => 'opigno_forum_last_topics_item',
'#topic' => $topic,
];
}
}
public function preprocessForumLastTopicsItem(array &$variables) : void {
$topic =& $variables["topic"];
$variables['name'] = $topic
->label();
$variables['link'] = $topic
->toUrl()
->toString();
$variables['new_posts'] = $topic->new_replies;
}
}