1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php ! defined( 'ABSPATH' ) && exit();
include $template->getPath( 'views/shared/header.php' );
if ( $poll->isResultsHidden() ): echo $template->userContent( $poll->getHiddenResultsContent() ); else: ?> <div class="totalpoll-questions"> <?php foreach ( $poll->getQuestionsForResults() as $question ): include $template->getPath( 'views/results/question.php' ); endforeach; ?> </div> <?php endif;
include $template->getPath( 'views/shared/footer.php' );
|