-
Notifications
You must be signed in to change notification settings - Fork 0
/
content.tmpl.php
114 lines (105 loc) · 5.51 KB
/
content.tmpl.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<?php
/****************************************************************/
/* ATutor */
/****************************************************************/
/* Copyright (c) 2002-2009 */
/* Adaptive Technology Resource Centre / University of Toronto */
/* http://atutor.ca */
/* */
/* This program is free software. You can redistribute it and/or*/
/* modify it under the terms of the GNU General Public License */
/* as published by the Free Software Foundation. */
/****************************************************************/
if (!defined('AT_INCLUDE_PATH')) { exit; } ?>
<?php if ($this->has_text_alternative || $this->has_audio_alternative || $this->has_visual_alternative || $this->has_sign_lang_alternative): ?>
<ul id="alternatives_shortcuts">
<?php if ($this->has_text_alternative) :?>
<li>
<a href="<?php echo $_SERVER['PHP_SELF'].'?cid='.$this->cid.(($_GET['alternative'] == 3) ? '' : SEP.'alternative=3'); ?>">
<img src="<?php echo AT_BASE_HREF; ?>images/<?php echo (($_GET['alternative'] == 3) ? 'pause.png' : 'text_alternative.png'); ?>"
alt="<?php echo (($_GET['alternative'] == 3) ? _AT('stop_apply_text_alternatives') : _AT('apply_text_alternatives')); ?>"
title="<?php echo (($_GET['alternative'] == 3) ? _AT('stop_apply_text_alternatives') : _AT('apply_text_alternatives')); ?>"
border="0" />
<?php echo (($_GET['alternative'] == 3) ? _AT('stop_apply_text_alternatives') : _AT('apply_text_alternatives')); ?>
</a>
</li>
<?php endif; // END OF has text alternative?>
<?php if ($this->has_audio_alternative) :?>
<li>
<a href="<?php echo $_SERVER['PHP_SELF'].'?cid='.$this->cid.(($_GET['alternative'] == 1) ? '' : SEP.'alternative=1'); ?>">
<img src="<?php echo AT_BASE_HREF; ?>images/<?php echo (($_GET['alternative'] == 1) ? 'pause.png' : 'audio_alternative.png'); ?>"
alt="<?php echo (($_GET['alternative'] == 1) ? _AT('stop_apply_audio_alternatives') : _AT('apply_audio_alternatives')); ?>"
title="<?php echo (($_GET['alternative'] == 1) ? _AT('stop_apply_audio_alternatives') : _AT('apply_audio_alternatives')); ?>"
border="0" />
<?php echo (($_GET['alternative'] == 1) ? _AT('stop_apply_audio_alternatives') : _AT('apply_audio_alternatives')); ?>
</a>
</li>
<?php endif; // END OF has audio alternative?>
<?php if ($this->has_visual_alternative) :?>
<li>
<a href="<?php echo $_SERVER['PHP_SELF'].'?cid='.$this->cid.(($_GET['alternative'] == 4) ? '' : SEP.'alternative=4'); ?>">
<img src="<?php echo AT_BASE_HREF; ?>images/<?php echo (($_GET['alternative'] == 4) ? 'pause.png' : 'visual_alternative.png'); ?>"
alt="<?php echo (($_GET['alternative'] == 4) ? _AT('stop_apply_visual_alternatives') : _AT('apply_visual_alternatives')); ?>"
title="<?php echo (($_GET['alternative'] == 4) ? _AT('stop_apply_visual_alternatives') : _AT('apply_visual_alternatives')); ?>"
border="0" />
<?php echo (($_GET['alternative'] == 4) ? _AT('stop_apply_visual_alternatives') : _AT('apply_visual_alternatives')); ?>
</a>
</li>
<?php endif; // END OF has visual alternative?>
<?php if ($this->has_sign_lang_alternative) :?>
<li>
<a href="<?php echo $_SERVER['PHP_SELF'].'?cid='.$this->cid.(($_GET['alternative'] == 2) ? '' : SEP.'alternative=2'); ?>">
<img src="<?php echo AT_BASE_HREF; ?>images/<?php echo (($_GET['alternative'] == 2) ? 'pause.png' : 'sign_lang_alternative.png'); ?>"
alt="<?php echo (($_GET['alternative'] == 2) ? _AT('stop_apply_sign_lang_alternatives') : _AT('apply_sign_lang_alternatives')); ?>"
title="<?php echo (($_GET['alternative'] == 2) ? _AT('stop_apply_sign_lang_alternatives') : _AT('apply_sign_lang_alternatives')); ?>"
border="0" />
<?php echo (($_GET['alternative'] == 2) ? _AT('stop_apply_sign_lang_alternatives') : _AT('apply_sign_lang_alternatives')); ?>
</a>
</li>
<?php endif; // END OF has sign language alternative?>
</ul>
<?php endif; // END OF displaying alternative shortcut icons?>
<?php
if ($_SESSION["prefs"]["PREF_SHOW_CONTENTS"] && $this->content_table <> "")
echo $this->content_table;
?>
<div id="content-text">
<?php echo $this->body; ?>
</div>
<?php if (!empty($this->test_ids)): ?>
<div id="content-test" class="input-form">
<ol>
<strong><?php echo _AT('tests') . ':' ; ?></strong>
<li class="top-tool"><?php echo $this->test_message; ?></li>
<ul class="tools">
<?php
foreach ($this->test_ids as $id => $test_obj){
echo '<li><a href="'.url_rewrite('mods/_standard/tests/test_intro.php?tid='.$test_obj['test_id'], AT_PRETTY_URL_IS_HEADER).'">'.
AT_print($test_obj['title'], 'tests.title').'</a><br /></li>';
}
?>
</ul>
</li></ol>
</div>
<?php endif; ?>
<?php
if (!empty($this->forum_ids)): ?>
<div id="content-test" class="input-form">
<ol>
<strong><?php echo _AT('forums') . ':' ; ?></strong>
<li class="top-tool"><?php echo $this->forum_message; ?></li>
<ul class="tools">
<?php
foreach ($this->forum_ids as $id => $forum_obj) {
echo '<li><a href="'.url_rewrite('mods/_standard/forums/forum/index.php?fid='.$forum_obj['forum_id'], AT_PRETTY_URL_IS_HEADER).'">'.
AT_print($forum_obj['title'], 'forums.title').'</a><br /></li>';
}
?>
</ul>
</li>
</ol>
</div>
<?php endif; ?>
<div id="content-info">
<?php echo $this->content_info; ?>
</div>