set_template(__DIR__.'/poll.html'); $tpl->set_locale(fusion_get_locale()); $tpl->set_tag('openside', fusion_get_function('openside', $info['poll_tablename'])); $tpl->set_tag('closeside', fusion_get_function('closeside')); if (!empty($info['poll_arch'])) { $tpl->set_block('poll_arch', [ 'content' => $info['poll_arch'] ]); } foreach ($info['poll_table'] as $poll) { if (!empty($poll['poll_option'])) { $poll['poll_option'] = implode('', $poll['poll_option']); } if (!empty($poll['poll_foot'])) { $poll['poll_foot'] = "
\n".implode("
\n
\n", $poll['poll_foot'])."
\n"; } $tpl->set_block('polls', $poll); } echo $tpl->get_output(); } } }