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