mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-26 17:29:21 +02:00
14 lines
288 B
PHP
14 lines
288 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(PDO::FETCH_ASSOC);
|
|
$twig->display('poll.html.twig', array(
|
|
'poll' => $poll
|
|
));
|
|
}
|