help.verua.ch/help_FR/include/client/templates/thread-event.tmpl.php
2026-01-05 08:46:20 +01:00

11 lines
354 B
PHP

<?php
$desc = $event->getDescription(ThreadEvent::MODE_CLIENT);
if (!$desc)
return;
?>
<div class="thread-event <?php if ($event->uid) echo 'action'; ?>">
<span class="type-icon">
<i class="faded icon-<?php echo $event->getIcon(); ?>"></i>
</span>
<span class="faded description"><?php echo $desc; ?></span>
</div>