move code up one directory
[atutor.git] / themes / simplified-desktop / users / pref_wizard / initialize.tmpl.php
1 <?php $prefs_set = isset($this->pref_wiz);?>
2
3 <fieldset class="wizscreen"><legend><?php echo _AT('prefs_set_init_legend'); ?></legend>
4 <div id="feedback">
5 <?php echo _AT('prefs_set_init'); ?>
6 </div>
7     <div>
8         <input type="checkbox" name="pref_wiz[]" value="<?php echo DISPLAY ?>" id="display" <?php if ($prefs_set && in_array(DISPLAY, $this->pref_wiz)) echo checked ?> />
9         <label for="display"><?php echo _AT('prefs_set_init_see'); ?></label>
10     </div>
11
12     <div>
13         <input type="checkbox" name="pref_wiz[]" value="<?php echo NAVIGATION ?>" id="navigation" <?php if ($prefs_set && in_array(NAVIGATION, $this->pref_wiz)) echo checked ?> />
14         <label for="navigation"><?php echo _AT('prefs_set_init_nav'); ?></label>
15     </div>
16
17     <div>
18         <input type="checkbox" name="pref_wiz[]" value="<?php echo ALT_TO_TEXT ?>" id="altToText" <?php if ($prefs_set && in_array(ALT_TO_TEXT, $this->pref_wiz)) echo checked ?> />
19         <label for="altToText"><?php echo _AT('prefs_set_init_text'); ?></label>
20     </div>
21
22     <div>
23         <input type="checkbox" name="pref_wiz[]" value="<?php echo ALT_TO_AUDIO ?>" id="altToAudio" <?php if ($prefs_set && in_array(ALT_TO_AUDIO, $this->pref_wiz)) echo checked ?> />
24         <label for="altToAudio"><?php echo _AT('prefs_set_init_audio'); ?></label>
25     </div>
26     
27     <div>
28         <input type="checkbox" name="pref_wiz[]" value="<?php echo ALT_TO_VISUAL ?>" id="altToVisual" <?php if ($prefs_set && in_array(ALT_TO_VISUAL, $this->pref_wiz)) echo checked ?> />
29         <label for="altToVisual"><?php echo _AT('prefs_set_init_visual'); ?></label>
30     </div>
31     
32     <div>
33         <input type="checkbox" name="pref_wiz[]" value="<?php echo SUPPORT ?>" id="support" <?php if ($prefs_set && in_array(SUPPORT, $this->pref_wiz)) echo checked ?> />
34         <label for="support"><?php echo _AT('prefs_set_init_tool'); ?></label>
35     </div>
36     
37     <div>
38         <input type="checkbox" name="pref_wiz[]" value="<?php echo ATUTOR ?>" id="atutor_pref" <?php if ($prefs_set && in_array(ATUTOR, $_POST['pref_wiz'])) echo checked ?> />
39         <label for="atutor_pref"><?php echo _AT('prefs_set_init_atutor'); ?></label>
40     </div>
41     
42     <input type="hidden" value="-1" name="pref_index" id="pref_index" /><br />
43     <input type="hidden" value="<?php echo $_SESSION['course_id']; ?>" name="course_id" id="course_id" /><br />
44     <input class="button" type="submit" name="set_default" value="<?php echo _AT("reapply_default"); ?>" accesskey="d" />
45     <input class="button" type="submit" value="<?php echo _AT('next'); ?>" name="next" id="next"/>
46
47 </fieldset>