4122: changed themes to use ATutor.course.toggleFolder and removed toggleFolder from...
[atutor.git] / docs / themes / mobile / include / header.tmpl.php
1 <?php
2 /************************************************************************/
3 /* ATutor                                                                                                                               */
4 /************************************************************************/
5 /* Copyright (c) 2002-2008 by Greg Gay, Joel Kronenberg & Heidi Hazelton*/
6 /* Adaptive Technology Resource Centre / University of Toronto                  */
7 /* http://atutor.ca                                                                                                             */
8 /*                                                                                                                                              */
9 /* This program is free software. You can redistribute it and/or                */
10 /* modify it under the terms of the GNU General Public License                  */
11 /* as published by the Free Software Foundation.                                                */
12 /************************************************************************/
13 // $Id: header.tmpl.php 3825 2005-03-11 15:35:51 joel $
14 if (!defined('AT_INCLUDE_PATH')) { exit; }
15 /* available header.tmpl.php variables:
16  * $this->lang_code                     the ISO language code
17  * SITE_NAME                            the site name from the config file
18  * $this->page_title            the name of this page to use in the <title>
19  * $this->lang_charset          the ISO language character set
20  * $this->content_base_href     the <base href> to use for this page
21  * $this->base_path                     the absolute path to this atutor installation
22  * $this->rtl_css                       if set, the path to the RTL style sheet
23  * $this->icon                  the path to a course icon
24  * $this->banner_style          -deprecated-
25  * $this->theme                         the directory name of the current theme
26  * $this->base_href                     the full url to this atutor installation
27  * $this->onload                        javascript onload() calls
28  * $this->img                           the absolute path to this theme's images/ directory
29  * $this->sequence_links        associative array of 'previous', 'next', and/or 'resume' links
30  * $this->path                          associative array of path to this page: aka bread crumbs
31  * $this->rel_url                       the relative url from the installation root to this page
32  * $this->nav_courses           associative array of this user's enrolled courses
33  * $this->section_title         the title of this section (course, public, admin, my start page)
34  * $this->top_level_pages       associative array of the top level navigation
35  * $this->current_top_level_page        the full path to the current top level page with file name
36  * $this->sub_level_pages                       associate array of sub level navigation
37  * $this->back_to_page                          if set, the path and file name to the part of this page (if parent is not a top level nav)
38  * $this->current_sub_level_page        the full path to the current sub level page with file name
39  * $this->guide                         the full path and file name to the guide page
40  * ======================================
41  * top_level_pages           array(array('url', 'title'))     the top level pages. ATutor default creates tabs.
42  * section_title             string                           the name of the current section. either name of the course, administration, my start page, etc.
43  * page_title                string                           the title of the current page.
44  * path                      array(array('url', 'title'))     the path to the current page.
45  * back_to_page              array('url', 'title')            the link back to the part of the current page, if needed.
46  * current_top_level_page    string                           full url to the current top level page in "top_leve_pages"
47  * current_sub_level_page    string                           full url to the current sub level page in the "sub_level_pages"
48  * sub_level_pages           array(array('url', 'title'))     the sub level pages.
49  */
50
51 // will have to be moved to the header.inc.php
52 global $system_courses, $_custom_css, $db, $_base_path, $contentManager;
53
54 // 1. any click on the page closes the content menu but the link "content_link" itself
55 // 2. the click on link "content_link" opens the content menu
56 $this->onload .= "
57 jQuery(document).click(function () {jQuery('#content').hide('slow');}); 
58
59 jQuery('#content_link').click(function(e) {
60   e.stopPropagation();
61   jQuery('#content').slideToggle();
62 });
63 ";
64
65 ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
66
67 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="<?php echo $this->lang_code; ?>"> 
68
69 <head>
70         <title><?php echo SITE_NAME; ?> : <?php echo $this->page_title; ?></title>
71         <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $this->lang_charset; ?>" />
72         <meta name="Generator" content="ATutor - Copyright 2005 by http://atutor.ca" />
73         <base href="<?php echo $this->content_base_href; ?>" />
74         <link rel="shortcut icon" href="<?php echo $this->base_path; ?>favicon.ico" type="image/x-icon" />
75         <link rel="stylesheet" href="<?php echo $this->base_path.'themes/'.$this->theme; ?>/print.css" type="text/css" media="print" />
76         <link rel="stylesheet" href="<?php echo $this->base_path.'themes/'.$this->theme; ?>/styles.css" type="text/css" />
77         <!--[if IE]>
78           <link rel="stylesheet" href="<?php echo $this->base_path.'themes/'.$this->theme; ?>/ie_styles.css" type="text/css" />
79         <![endif]-->
80         <link rel="stylesheet" href="<?php echo $this->base_path.'themes/'.$this->theme; ?>/forms.css" type="text/css" />
81 <?php echo $this->rtl_css; ?>
82 <?php if (isset($this->course_id) && $system_courses[$this->course_id]['rss']): ?>
83         <link rel="alternate" type="application/rss+xml" title="<?php echo SITE_NAME; ?> - RSS 2.0" href="<?php echo $this->base_href; ?>get_rss.php?<?php echo $this->course_id; ?>-2" />
84         <link rel="alternate" type="application/rss+xml" title="<?php echo SITE_NAME; ?> - RSS 1.0" href="<?php echo $this->base_href; ?>get_rss.php?<?php echo $this->course_id; ?>-1" />
85 <?php endif; ?>
86         <script src="<?php echo $this->base_path; ?>jscripts/infusion/InfusionAll.js" type="text/javascript"></script>
87         <script src="<?php echo $this->base_path; ?>jscripts/infusion/jquery.autoHeight.js" type="text/javascript"></script>
88         <script language="javascript" type="text/javascript">
89         //<!--
90         jQuery.noConflict();
91         //-->
92         </script>
93     <script src="<?php echo $this->base_path; ?>jscripts/ATutor.js" type="text/javascript"></script>   
94     <?php echo $this->custom_css; ?>
95     <style id="pref_style" type="text/css"></style> 
96 </head>
97 <body onload="<?php echo $this->onload; ?>">
98 <div class="page_wrapper">
99 <div id="header">
100         <a href="<?php echo htmlspecialchars($_SERVER['REQUEST_URI'], ENT_QUOTES); ?>#content" accesskey="c">
101         <img src="<?php echo $this->base_path; ?>images/clr.gif" height="1" width="1" border="0" alt="<?php echo _AT('goto_content'); ?> ALT+c" /></a>          
102
103         <a href="<?php echo htmlspecialchars($_SERVER['REQUEST_URI'], ENT_QUOTES); ?>#menu<?php echo $_REQUEST['cid']  ?>"  accesskey="m"><img src="<?php echo $this->base_path; ?>images/clr.gif" height="1" width="1" border="0" alt="<?php echo _AT('goto_menu'); ?> ALT+m" /></a>
104         <div id="top-links"> <!-- top help/search/login links -->
105                 <?php if (isset($_SESSION['member_id']) && $_SESSION['member_id']): ?>
106                         <?php if(!$this->just_social): ?>
107                         <!-- start the jump menu -->
108                         <?php if (empty($_GET)): ?>
109                                 <form method="post" action="<?php echo $this->base_path; ?>bounce.php?p=<?php echo urlencode($this->rel_url); ?>" target="_top">
110                         <?php else: ?>
111                                 <form method="post" action="<?php echo $this->base_path; ?>bounce.php" target="_top">
112                         <?php endif; ?>
113                         <label for="jumpmenu" accesskey="j"></label>
114                                 <select name="course" id="jumpmenu" title="<?php echo _AT('jump'); ?>:  Alt-j">                                                 
115                                         <option value="0"><?php echo _AT('my_start_page'); ?></option>
116                                         <optgroup label="<?php echo _AT('courses_below'); ?>">
117                                                 <?php foreach ($this->nav_courses as $this_course_id => $this_course_title): ?>
118                                                         <option value="<?php echo $this_course_id; ?>"><?php echo $this_course_title; ?></option>
119                                                 <?php endforeach; ?>
120                                         </optgroup>
121                                 </select> <input type="submit" name="jump" value="<?php echo _AT('jump'); ?>" class="button" /> </form>
122                         <!-- /end the jump menu -->
123                         <?php endif; ?>
124
125                         <?php if ($_SESSION['is_super_admin']): ?>
126                                 <a href="<?php echo $this->base_path; ?>bounce.php?admin"><?php echo _AT('return_to_admin_area'); ?></a> | 
127                         <?php endif; ?>
128
129                         <?php if ($this->course_id > -1): ?>
130                                 <?php if (get_num_new_messages()): ?>
131                                         <a href="<?php echo $this->base_path; ?>inbox/index.php"><?php echo _AT('inbox'); ?> (<?php echo get_num_new_messages(); ?>)</a> 
132                                 <?php else: ?>
133                                         <a href="<?php echo $this->base_path; ?>inbox/index.php"><?php echo _AT('inbox'); ?></a>
134                                 <?php endif; ?>
135                         <?php endif; ?>
136                 <?php endif; ?>
137                 <?php if(!$this->just_social): ?>
138                         <a href="<?php echo $this->base_path; ?>search.php"><?php echo _AT('search'); ?></a> 
139                 <?php endif; ?>
140                 <a href="<?php echo $this->base_path; ?>help/index.php"><?php echo _AT('help'); ?></a>
141         </div>
142         <?php if (!empty($this->icon)) { // if a course icon is available, display it here.  ?>
143                 <a href="<?php echo $this->base_path.url_rewrite('index.php'); ?>"><img src="<?php echo $this->icon; ?>" class="headicon" alt="<?php echo  _AT('home'); ?>" /></a>      
144         <?php } ?>
145
146
147
148         <?php
149         // If there is a custom course banner in the file manager called banner.html, display it here
150         @readfile(AT_CONTENT_DIR . $this->course_id.'/banner.txt'); 
151
152         /*
153         and example banner.html file might look like:
154         <div style="width: 760px; height: 42px; background: white;"><img src="http://[mysite]/atutor15rc3/banners/kart-camb.jpg"></div>
155         */
156
157         ?>
158         <!-- section title -->
159         <?php if (isset($_SESSION['valid_user']) && $_SESSION['valid_user']): 
160                 echo '<div style="font-size:small;font-weight:bold;padding-left:1em;color:white;">'.stripslashes(SITE_NAME).'</div>'; 
161         else:
162                 echo '<br />';  
163         endif; ?>
164         <h1 id="section-title"><?php echo $this->section_title; ?>
165                 <?php if ((isset($this->course_id) && $this->course_id > 0) && ($_SESSION['enroll'] == AT_ENROLL_NO)) : ?> 
166                         - <small><a href="<?php echo $this->base_path; ?>enroll.php?course=<?php echo $this->course_id; ?>"><?php echo _AT('enroll_me'); ?></a></small>
167                 <?php endif; ?>
168         </h1>
169         
170 </div>
171
172 <div id="topnavlistcontainer">
173 <!-- the main navigation. in our case, tabs -->
174         <ul id="topnavlist">
175                 <?php $accesscounter = 0; //initialize ?>
176                 <?php foreach ($this->top_level_pages as $page): ?>
177                         <?php ++$accesscounter; $accesscounter = ($accesscounter == 10 ? 0 : $accesscounter); ?>
178                         <?php $accesskey_text = ($accesscounter < 10 ? 'accesskey="'.$accesscounter.'"' : ''); ?>
179                         <?php $accesskey_title = ($accesscounter < 10 ? ' Alt+'.$accesscounter : ''); ?>
180                         <?php if ($page['url'] == $this->current_top_level_page): ?>
181                                 <li><a href="<?php echo $page['url']; ?>" <?php echo $accesskey_text; ?> title="<?php echo $page['title'] . $accesskey_title; ?>" class="active"><?php echo $page['title']; ?></a></li>
182                         <?php else: ?>
183                                 <li><a href="<?php echo $page['url']; ?>" <?php echo $accesskey_text; ?> title="<?php echo $page['title'] . $accesskey_title; ?>"><?php echo $page['title']; ?></a></li>
184                         <?php endif; ?>
185                         <?php $accesscounter = ($accesscounter == 0 ? 11 : $accesscounter); ?>
186                 <?php endforeach; ?>
187         </ul>
188 </div>
189
190 <div style="background-color:#E6E6E6; font-size:0.85em; padding-top: 5px; border-bottom:1px solid black; height:2em;">
191         <!-- the sub navigation -->
192         <div style="float: right; padding-right: 5px; text-transform: lowercase;">
193                 <?php if (isset($_SESSION['valid_user']) && $_SESSION['valid_user']): ?>                                        
194                         <strong><?php echo get_display_name($_SESSION['member_id']); ?></strong> | <a href="<?php echo $this->base_path; ?>logout.php"><?php echo _AT('logout'); ?></a>
195                 <?php else: ?>
196                          <a href="<?php echo $this->base_path; ?>login.php?course=<?php echo $this->course_id; ?>"><?php echo _AT('login'); ?></a> | <a href="<?php echo $this->base_path; ?>registration.php"><?php echo _AT('register'); ?></a>
197                 <?php endif; ?>
198         </div>
199
200         <div style="padding-left: 5px;">
201                 <a id="content_link" href="javascript:void(0);">Content</a>
202                 <div id="content" style="background-color:#E6E6E6; width: 22em; display: none; position: relative; z-index: 1;">
203                 <?php $contentManager->printMainMenu(); ?>
204                 </div>
205         </div>
206         
207         <?php if ($this->sub_level_pages): ?>
208         <!--    <div id="sub-navigation">
209                         <?php if (isset($this->back_to_page)): ?>
210                                 <a href="<?php echo $this->back_to_page['url']; ?>" id="back-to"><?php echo _AT('back_to').' '.$this->back_to_page['title']; ?></a> | 
211                         <?php endif; ?>
212
213                         <?php $num_pages = count($this->sub_level_pages); ?>
214                         <?php for ($i=0; $i<$num_pages; $i++): ?>
215                                 <?php if ($this->sub_level_pages[$i]['url'] == $this->current_sub_level_page): ?>
216                                         <strong><?php echo $this->sub_level_pages[$i]['title']; ?></strong>
217                                 <?php else: ?>
218                                         <a href="<?php echo $this->sub_level_pages[$i]['url']; ?>"><?php echo $this->sub_level_pages[$i]['title']; ?></a>
219                                 <?php endif; ?>
220                                 <?php if ($i < $num_pages-1): ?>
221                                         |
222                                 <?php endif; ?>
223                         <?php endfor; ?>
224                 </div> -->
225         <?php else: ?>
226                 <!-- <div id="sub-navigation">
227                         &nbsp;
228                 </div> -->
229         <?php endif; ?>
230 </div>
231
232 <div style="padding:3px;">
233 <?php if (isset($_SESSION["prefs"]["PREF_SHOW_BREAD_CRUMBS"]) && $_SESSION["prefs"]["PREF_SHOW_BREAD_CRUMBS"]) { ?>
234         <!-- the bread crumbs -->
235         <div id="breadcrumbs">
236                 <?php foreach ($this->path as $page): ?>
237                         <a href="<?php echo $page['url']; ?>"><?php echo htmlspecialchars($page['title'], ENT_COMPAT, "UTF-8"); ?></a> > 
238                 <?php endforeach; ?> <?php echo $this->page_title; ?>
239         </div>
240 <?php } ?>
241
242         <?php if (isset($this->guide) && isset($_SESSION["course_id"]) && $this->guide && ($_SESSION["prefs"]["PREF_SHOW_GUIDE"] || $_SESSION["course_id"] == "-1")) : ?>
243                 <a href="<?php echo $this->guide; ?>" id="guide" onclick="poptastic('<?php echo $this->guide; ?>'); return false;" target="_new"><em><?php echo $this->page_title; ?></em></a>
244         <?php endif; ?>
245 </div>
246
247
248 <div id="contentwrapper">
249         <div id="contentcolumn"
250                 <?php if ((isset($this->course_id) && $this->course_id <= 0)): ?>
251                         style="margin-left:0.5em;width:99%;"
252                 <?php endif; ?>
253                 >
254
255                 <?php if (isset($this->course_id) && $this->course_id > 0): ?>
256                 <div class="sequence-links">
257                 <?php if ($_SESSION["prefs"]["PREF_SHOW_NEXT_PREVIOUS_BUTTONS"]) { ?>
258                         <?php if ($this->sequence_links['resume']): ?>
259                                         <a style="color:white;" href="<?php echo $this->sequence_links['resume']['url']; ?>" accesskey="."><img src="<?php echo $this->img; ?>resume.gif" border="0" title="<?php echo _AT('resume').': '.$this->sequence_links['resume']['title']; ?> Alt+." alt="<?php echo $this->sequence_links['resume']['title']; ?> Alt+." class="img-size-ascdesc" /></a>
260                         <?php else:
261                                 if ($this->sequence_links['previous']): ?>
262                                         <a href="<?php echo $this->sequence_links['previous']['url']; ?>" title="<?php echo _AT('previous_topic').': '. $this->sequence_links['previous']['title']; ?> Alt+," accesskey=","><img src="<?php echo $this->img; ?>previous.gif" border="0" alt="<?php echo _AT('previous_topic').': '. $this->sequence_links['previous']['title']; ?> Alt+," class="img-size-ascdesc" /></a>
263                                 <?php endif;
264                                 if ($this->sequence_links['next']): ?>
265                                         <a href="<?php echo $this->sequence_links['next']['url']; ?>" title="<?php echo _AT('next_topic').': '.$this->sequence_links['next']['title']; ?> Alt+." accesskey="."><img src="<?php echo $this->img; ?>next.gif" border="0" alt="<?php echo _AT('next_topic').': '.$this->sequence_links['next']['title']; ?> Alt+." class="img-size-ascdesc" /></a>
266                                 <?php endif; ?>
267                         <?php endif; ?>
268                 <?php } ?>
269                         &nbsp;
270                 </div>
271                 <?php endif; ?>
272
273         <!-- the page title -->
274         <a name="content" title="<?php echo _AT('content'); ?>"></a>
275         <h2 class="page-title"><?php echo $this->page_title; ?></h2>
276         <?php global $msg; $msg->printAll(); $_base_href;?>
277
278         <?php if (count($this->sub_level_pages) > 0): ?>
279
280 <!-- <div id="topnavlistcontainer">
281         <ul id="topnavlist">
282                 <?php $accesscounter = 0; //initialize ?>
283                 <?php foreach ($this->top_level_pages as $page): ?>
284                         <?php ++$accesscounter; $accesscounter = ($accesscounter == 10 ? 0 : $accesscounter); ?>
285                         <?php $accesskey_text = ($accesscounter < 10 ? 'accesskey="'.$accesscounter.'"' : ''); ?>
286                         <?php $accesskey_title = ($accesscounter < 10 ? ' Alt+'.$accesscounter : ''); ?>
287                         <?php if ($page['url'] == $this->current_top_level_page): ?>
288                                 <li><a href="<?php echo $page['url']; ?>" <?php echo $accesskey_text; ?> title="<?php echo $page['title'] . $accesskey_title; ?>" class="active"><?php echo $page['title']; ?></a></li>
289                         <?php else: ?>
290                                 <li><a href="<?php echo $page['url']; ?>" <?php echo $accesskey_text; ?> title="<?php echo $page['title'] . $accesskey_title; ?>"><?php echo $page['title']; ?></a></li>
291                         <?php endif; ?>
292                         <?php $accesscounter = ($accesscounter == 0 ? 11 : $accesscounter); ?>
293                 <?php endforeach; ?>
294         </ul>
295 </div> -->
296
297                 <div id="subnavlistcontainer">
298                         <div id="subnavbacktopage">
299                         <?php if (isset($this->back_to_page)): ?>
300                                 <a href="<?php echo $this->back_to_page['url']; ?>">
301                                 <img border="0" width="10" height="11" alt="<?php echo _AT('back_to').' '.$this->back_to_page['title']; ?>" src="<?php echo $this->base_href; ?>images/arrowicon.gif" style="float:left;"/></a>&nbsp;
302                         <?php endif; ?>
303                         </div>
304
305                         <ul id="subnavlist">
306                         <?php $num_pages = count($this->sub_level_pages); ?>
307                         <?php for ($i=0; $i<$num_pages; $i++): ?>
308                                 
309                                 <?php if ($this->sub_level_pages[$i]['url'] == $this->current_sub_level_page): ?>
310                                 <li><?php echo $this->sub_level_pages[$i]['title']; ?></li>
311                                 <?php else: ?>
312                                         <li><a href="<?php echo $this->sub_level_pages[$i]['url']; ?>"><?php echo $this->sub_level_pages[$i]['title']; ?></a></li>
313                                 <?php endif; ?>
314                                 <?php if ($i < $num_pages-1): 
315                                         echo " ";?>
316                                 <?php endif; ?>
317                         <?php endfor; ?>
318                         </ul>
319                 </div>
320         <?php endif; ?>
321
322 <!-- the main navigation. in our case, tabs -->