slawkens 2695995211 Move tibiacom boxes to Twig templates
Yes they are looking and working same as before ;)
2018-10-16 01:42:15 +02:00

14 lines
272 B
PHP

<?php
if(PAGE !== 'news') {
return;
}
$poll = $db->query('SELECT `id`, `question` FROM `z_polls` WHERE end > ' . time() . ' ORDER BY `end` LIMIT 1');
if($poll->rowCount() > 0) {
$poll = $poll->fetch();
$twig->display('poll.html.twig', array(
'poll' => $poll
));
}