AC_4897, AC_4898, AC_4899: Multifile uploader fixes.
[acontent.git] / docs / themes / default / tests / test_questions / multichoice_result.tmpl.php
1 <p><?php echo AT_print($this->row['question'], 'tests_questions.question'); ?></p>
2
3 <ul style="padding: 0px; margin: 0px; list-style-type: none">
4         <?php for ($i=0; $i < 10; $i++): ?>
5                 <?php if ($this->row['choice_'.$i] != ''): ?>
6                         <li style="padding: 4px">
7                                 <?php if (($this->row['answer_'.$i] == 1) && in_array($i, $this->answers)): ?>
8                                         <img src="<?php echo $this->base_path; ?>images/checkmark.gif" alt="<?php echo _AT('correct_answer'); ?>" title="<?php echo _AT('correct_answer'); ?>" height="16" width="16" style="vertical-align: middle" />
9                                 <?php elseif (($this->row['weight'] > 0) && (($this->row['answer_'.$i] == 0) || in_array($i, $this->answers))): ?>
10                                         <img src="<?php echo $this->base_path; ?>images/x.gif" alt="<?php echo _AT('wrong_answer'); ?>" title="<?php echo _AT('wrong_answer'); ?>" height="16" width="16" style="vertical-align: middle" />
11                                 <?php else: ?>
12                                         <img src="<?php echo $this->base_path; ?>images/clr.gif" alt="" title="" height="16" width="16" style="vertical-align: middle" />
13                                 <?php endif; ?>
14
15                                 <?php if (in_array($i, $this->answers)): ?>
16                                         <img src="<?php echo $this->base_path; ?>images/checkbox_check.gif" alt="<?php echo _AT('checked'); ?>" title="<?php echo _AT('checked'); ?>" height="13" width="13" style="vertical-align: middle" />
17                                 <?php else: ?>
18                                         <img src="<?php echo $this->base_path; ?>images/checkbox_empty.gif" alt="<?php echo _AT('unchecked'); ?>" title="<?php echo _AT('unchecked'); ?>" height="13" width="13" style="vertical-align: middle" />
19                                 <?php endif; ?>
20                                 <?php echo AT_print($this->row['choice_'.$i], 'tests_questions.choice_'.$i); ?>
21                 <?php endif; ?>
22         <?php endfor; ?>
23 </ul>