(no commit message)
[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->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  * is_mobile_device          true or false                    the request is from a mobile device or a desktop device
49  * mobile_device_type        One of the constants: IPOD_DEVICE, BLACKBERRY_DEVICE, ANDROID_DEVICE, UNKNOWN_DEVICE (@see include/lib/constants.inc.php)
50  */
51
52 // will have to be moved to the header.inc.php
53 global $system_courses, $_custom_css, $db, $_base_path, $contentManager;
54
55 // 1. any click on the page closes the content menu but the link "content_link" itself
56 // 2. the click on link "content_link" opens the content menu
57
58
59 require ('TeraWurflRemoteClient.php');
60 $wurflObj = new TeraWurflRemoteClient('http://wurfl.thesedays.com/webservice.php');
61 $capabilities = array("product_info");
62 $data_format = TeraWurflRemoteClient::$FORMAT_JSON;
63 $wurflObj->getCapabilitiesFromAgent(null, $capabilities, $data_format);
64
65 // open/close content menu
66 $this->onload .= "
67 jQuery('#content_link').click(function(e) {
68   e.stopPropagation();
69   
70   jQuery('#content').slideToggle();
71   jQuery('#content_link').toggleClass('.content_link_tablet_highlight');
72   ";
73 $this->onload .= "});
74 ";
75
76
77 // open/close content menu - smartphones 
78 $this->onload .= "
79 jQuery('#content_link_phone').click(function(e) {
80   e.stopPropagation();
81   
82   jQuery('#content').slideToggle();
83   jQuery('#content-link-surround').toggleClass('content-closed');
84   jQuery('#content_link_phone').toggleClass('topnavlist-link-highlight');
85   
86   ";
87 $this->onload .= "});
88 ";
89
90 // open/close header navigational menu for smartphones
91 // jQuery('#topnavlist-link').toggleClass('topnavlist-link-highlight');
92 $this->onload .= "
93 jQuery(document).click(function () {
94 jQuery('#topnavlist').slideUp(600);}); 
95 jQuery('.topnavlist-link').click(function(e) {
96   e.stopPropagation();
97   jQuery('#topnavlist').slideToggle();
98  jQuery('#topnavlist-link').toggleClass('.topnavlist-link-highlight');
99 });
100 ";
101
102 // open/close header navigational menu for tablets
103
104 $this->onload .= "
105 jQuery(document).click(function () {
106 jQuery('#navigation-column').slideUp();}); 
107 jQuery('.topnavlist-link').click(function(e) {
108   e.stopPropagation();
109   jQuery('#navigation-column').slideToggle();
110     jQuery('#topnavlist-link').toggleClass('topnavlist-link-highlight');
111 });
112 ";
113
114 //jQuery for Gmail dock-style "more" button that makes the subnavlist expand for more options
115 $this->onload .= "
116 jQuery(document).click(function () {
117 jQuery('.subnavlist-more').slideUp();}); 
118 jQuery('.more-button').click(function(e) {
119   e.stopPropagation();
120   jQuery('.subnavlist-more').slideToggle();
121 });
122 ";
123
124
125 //hide and show results on Browse Courses page
126
127 $this->onload .= "
128 jQuery('#results-hide-show-link').click(function(e) {
129   e.stopPropagation();
130     jQuery('#results-display').slideToggle();
131     jQuery(this).toggleClass('content-closed');
132     jQuery(this).preventDefault();
133   ";
134 $this->onload .= "});
135 ";
136
137 //hide and show results elsewhere (uses classes) 
138 $this->onload .= "
139 jQuery('.results-hide-show-link').click(function(e) {
140   e.stopPropagation();
141         jQuery(this).parent().next('.results-display').slideToggle(); 
142           jQuery(this).toggleClass('content-closed');
143   ";
144 $this->onload .= "});
145 ";
146         
147
148 // Hide the addressbar
149 $this->onload .= "
150 setTimeout(function() { window.scrollTo(0, 1) }, 100);
151 ";
152
153
154
155 ?>
156
157 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
158
159 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="<?php echo $this->lang_code; ?>"> 
160
161 <head>
162         <title><?php echo SITE_NAME; ?> : <?php echo $this->page_title; ?></title>
163         <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $this->lang_charset; ?>" />
164         <meta name="Generator" content="ATutor - Copyright 2005 by http://atutor.ca" />
165         <base href="<?php echo $this->content_base_href; ?>" />
166         <link rel="shortcut icon" href="<?php echo $this->base_path; ?>favicon.ico" type="image/x-icon" /> 
167         <link rel="stylesheet" href="<?php echo $this->base_path.'themes/'.$this->theme; ?>/print.css" type="text/css" media="print" />
168         <!-- mobile fss -->     
169         <link rel="stylesheet" href="<?php echo $this->base_path; ?>jscripts/infusion/framework/fss/css/fss-mobile-layout.css" type="text/css"/>
170         <link rel="stylesheet" href="<?php echo $this->base_path; ?>jscripts/infusion/framework/fss/css/fss-mobile-theme-iphone.css" type="text/css"/>  
171         
172 <?php if ($this->is_mobile_device == true): ?>
173         <?php if ($this->mobile_device_type == ANDROID_DEVICE): ?>
174         <link rel="stylesheet" href="<?php echo $this->base_path.'themes/'.$this->theme; ?>/android.css" type="text/css"/>
175         <meta name="viewport" content="user-scalable=no, width=device-width" />
176         <?php endif; ?>
177         <?php if ($this->mobile_device_type == IPOD_DEVICE || $this->mobile_device_type == IPHONE_DEVICE): ?>
178         <link rel="stylesheet" href="<?php echo $this->base_path.'themes/'.$this->theme; ?>/iphone.css" type="text/css"/>
179         <meta name="viewport" content="user-scalable=no, width=device-width" />
180         <?php endif; ?>
181         <!-- Armin 25.08.2010: Detect BLACKBERRY_DEVICE and use blackberry.css-->
182         <?php if ($this->mobile_device_type == BLACKBERRY_DEVICE): ?>
183         <link rel="stylesheet" href="<?php echo $this->base_path.'themes/'.$this->theme; ?>/blackberry.css" type="text/css"/>
184         <meta name="viewport" content="user-scalable=no, width=device-width" />
185         <?php endif; ?>
186         <?php if ($this->mobile_device_type == IPAD_DEVICE): ?>
187         <link rel="stylesheet" href="<?php echo $this->base_path.'themes/'.$this->theme; ?>/tablet.css" type="text/css"/>
188         <meta name="viewport" content="width=768px, minimum-scale=1.0, maximum-scale=1.0" />
189         
190         <?php endif; ?>
191 <?php endif; ?>
192
193         <link rel="stylesheet" href="<?php echo $this->base_path.'themes/'.$this->theme; ?>/forms.css" type="text/css" />
194                 
195         <!-- Fluid Infusion -->
196         <script src="<?php echo $this->base_path; ?>jscripts/infusion/InfusionAll.js" type="text/javascript"></script>
197         <script language="javascript" type="text/javascript">
198
199         //<!--
200         jQuery.noConflict();
201         //-->
202         </script>
203         <script src="<?php echo $this->base_path; ?>jscripts/ATutor.js" type="text/javascript"></script>   
204
205         
206 <?php echo $this->rtl_css; ?>
207 <?php if (isset($this->course_id) && $system_courses[$this->course_id]['rss']): ?>
208         <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" />
209         <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" />
210 <?php endif; ?>
211
212
213 <?php echo $this->custom_css; ?>
214 </head>
215
216
217 <?php if ($this->mobile_device_type != IPAD_DEVICE): ?><!--  smartphone theme only -->
218
219 <body onload="<?php echo $this->onload; ?>" class="fl-theme-iphone ui-mobile-viewport">
220
221 <div id="wrapper">
222 <div id="main">
223         <div id="header">
224
225                 <a href="<?php echo htmlspecialchars($_SERVER['REQUEST_URI'], ENT_QUOTES); ?>#content">
226                 <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>          
227
228                 <div id="header-section-title">
229                         <!-- <?php if (isset($_SESSION['valid_user']) && $_SESSION['valid_user']): 
230                                         echo '<div id="site-name">'.stripslashes(SITE_NAME).'</div>'; 
231                                 endif; ?> --> 
232                         <h1 id="section-title"><?php echo $this->section_title; ?>
233                                 <?php if ((isset($this->course_id) && $this->course_id > 0) && ($_SESSION['enroll'] == AT_ENROLL_NO)) : ?> 
234                                 <!-- <small><a href="<?php echo $this->base_path; ?>enroll.php?course=<?php echo $this->course_id; ?>"><?php echo _AT('enroll_me'); ?></a></small>-->
235                                 <?php endif; ?>
236                                 </h1>
237                 </div>
238         </div> <!--  END HEADER -->
239
240
241         <div id="contentwrapper">
242
243         <!--  Note: ARIA roles cause XHTML validation errors because the XHTML DTD does not yet support ARIA. Use ARIA anyway -->
244
245         <div id="navigation-contentwrapper">
246         <div id="navigation-bar">
247                 <!--  this should be a button on its own  -->
248                         <?php if ($this->current_sub_level_page): ?>
249                         <div id="topnavlistcontainer" role="menu" aria-live="assertive" class="topnavlistcontainer" >
250                         <a class="navigation-bar-button topnavlist-link" id="topnavlist-link" href="javascript:void(0);" tabindex="1"><?php echo _AT('navigation'); ?></a>
251                                 <ul id="topnavlist"  class="fl-list-menu">
252                                         <?php $accesscounter = 0; //initialize ?>
253                                         <?php foreach ($this->top_level_pages as $page): ?>
254                                                 <?php ++$accesscounter; $accesscounter = ($accesscounter == 10 ? 0 : $accesscounter); ?>
255                                                 <?php $accesskey_text = ($accesscounter < 10 ? 'accesskey="'.$accesscounter.'"' : ''); ?>
256                                                 <?php $accesskey_title = ($accesscounter < 10 ? ' Alt+'.$accesscounter : ''); ?>
257                                                 <?php if ($page['url'] == $this->current_top_level_page): ?>
258                                                         <li role="menuitem"><a  href="<?php echo $page['url']; ?>" <?php echo $accesskey_text; ?> title="<?php echo $page['title'];?>"><?php echo $page['title']; ?></a>  </li>
259                                                 <?php else: ?>
260                                                         <li role="menuitem"><a  href="<?php echo $page['url']; ?>" <?php echo $accesskey_text; ?> title="<?php echo $page['title']; ?>"><?php echo $page['title']; ?></a></li>
261                                                 <?php endif; ?>
262                                 
263                                                 <?php $accesscounter = ($accesscounter == 0 ? 11 : $accesscounter); ?>
264                                         
265                                         <?php endforeach; ?>
266                                         <?php if(!$this->just_social): ?>
267                                         <li role="menuitem"><a href="<?php echo $this->base_path; ?>search.php"><?php echo _AT('search'); ?></a> </li>
268                                         <?php endif; ?> 
269                                 </ul>
270                         </div>
271                         <?php endif; ?>
272                 </div>
273
274
275
276         <ul class="home-guide fl-tabs" id="home-guide">
277         <!--  CHECK TO SEE IF USER IS A STUDENT -->
278         <?php if($_SESSION['is_admin'] == 0 && $_SESSION['privileges'] == 0 ):?>
279                 <li><a  href="<?php echo $this->base_path; ?>users/index.php"><?php echo _AT("home"); ?></a></li> 
280         <?php endif;?>          
281         <!--  CHECK TO SEE IF USER IS AN ADMINISTRATOR -->
282         <?php //if($_SESSION['is_admin'] == 0 && $_SESSION['privileges'] == 1):
283                 if($_SESSION['is_admin'] == 0 && $_SESSION['privileges'] == AT_ADMIN_PRIV_ADMIN):?>
284                 <li><a href="<?php echo $this->base_path; ?>admin/index.php"><?php echo _AT("home"); ?></a></li> 
285         <?php endif;?>
286         <!--  CHECK TO SEE IF USER IS AN INSTRUCTOR -->
287         <?php if($_SESSION['is_admin'] == 1): ?>
288                 <li><a href="<?php echo $this->base_path; ?>users/index.php"><?php echo _AT("home"); ?></a></li> 
289         <?php endif;?>
290         
291         <?php if (isset($this->guide) && isset($_SESSION["course_id"]) && $this->guide && ($_SESSION["prefs"]["PREF_SHOW_GUIDE"] || $_SESSION["course_id"] == "-1")) : ?>
292                         <li>
293                         <div id="guide_box">
294                                         <!--    <a href="<?php echo $this->guide; ?>" id="guide" onclick="ATutor.poptastic('<?php echo $this->guide; ?>'); return false;" target="_new"><img src="<?php echo $this->img; ?>guide-icon.png" width="30" height="30" title="guide: <?php echo $this->page_title; ?>"alt="guide: <?php echo $this->page_title; ?>"></img></a> -->
295                 
296                                   <a href="<?php echo $this->guide; ?>" id="guide" onclick="ATutor.poptastic('<?php echo $this->guide; ?>'); return false;" target="_new"><?php echo _AT("guide"); ?></a> 
297                         </div>
298                         </li>
299                         <?php endif; ?>
300                 </ul>
301         </div><!--  END navigation-contentwrapper -->
302         
303         <div id="content-sequence-links">
304         <!-- ENSURE "content_link" DOESN'T APPEAR IF NOT LOGGED IN -->
305         <?php if (isset($this->course_id) && $this->course_id > 0): ?>
306                         
307         
308                 <ul class="sequence-links fl-tabs" id="sequence-links">
309                         <?php if ($_SESSION["prefs"]["PREF_SHOW_NEXT_PREVIOUS_BUTTONS"]) { ?>
310                                 <?php if ($this->sequence_links['resume']): ?>
311                                                 <li>
312                                                 <a href="<?php echo $this->sequence_links['resume']['url']; ?>" class="previous-next resume" title="<?php echo _AT('resume').': '.$this->sequence_links['resume']['title']; ?>"><?php echo _AT('resume'); ?></a>
313                                                 </li>
314                                 <?php else:
315                                         if ($this->sequence_links['previous']): ?>
316                                                 <li class="arrow back"><a  href="<?php echo $this->sequence_links['previous']['url']; ?>" class="arrow back" title="<?php echo _AT('previous_topic').': '. $this->sequence_links['previous']['title']; ?>"> <?php echo "Previous"; ?> </a>
317                                                 </li>
318                                         <?php endif;
319                                         if ($this->sequence_links['next']): ?>
320                                                 <li class="arrow forward">
321                                                 <a href="<?php echo $this->sequence_links['next']['url']; ?>" class=""  title="<?php echo _AT('next_topic').': '.$this->sequence_links['next']['title']; ?>"> <?php echo "Next"; ?></a>
322                                                 </li>
323                                         <?php endif; ?>
324                                 <?php endif; ?>
325                         <?php } ?>
326                                 &nbsp;
327                         </ul> <!-- end sequence-links -->
328                 <?php endif; ?>
329         
330         
331         <?php if(isset($_SESSION['course_id']) && $_SESSION['course_id'] > 0): ?> 
332                 <div id="content-link-container"role="navigation" aria-live="assertive" class="flc-screenNavigator-navbar ">
333                 <div id="content-link-surround"  class=" content-link-surround" >
334                 <a id="content_link_phone"  href="javascript:void(0);"><?php echo "Content";//_AT("content_navigation"); ?></a>
335                 </div>
336                 </div>
337                 <div id="content" style=" display: none; position: absolute; top: 6.5em; clear: left; clear: right; z-index: 1;">
338                 <?php $contentManager->printMainMenu(); ?>
339                                 <script language="javascript" type="text/javascript"></script>
340                 </div>
341                 
342         <?php endif; ?>
343 </div>
344                 <div id="inner-contentwrapper" class="fl-container" >
345
346
347
348         <div id="contentcolumn">        
349                 
350
351                 <!-- the page title -->
352                 <a name="content" title="<?php echo _AT('content'); ?>"></a>
353                 <h2 class="page-title"><?php echo $this->page_title; ?></h2>
354         
355                 <?php global $msg; $msg->printAll(); $_base_href;?>
356         
357                 <!-- the sub navigation -->
358                 <?php if (count($this->sub_level_pages) > 0): ?>
359                                 <div id="subnavlistcontainer">
360                                         <div id="subnavbacktopage">
361                                         <?php if (isset($this->back_to_page)): ?>
362                                                 <a href="<?php echo $this->back_to_page['url']; ?>">
363                                                 <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;
364                                         <?php endif; ?>
365                                         </div>
366
367                                         <ul id="subnavlist">
368                                         <?php $num_pages = count($this->sub_level_pages); ?>
369                                         <?php for ($i=0; $i<$num_pages; $i++): ?>                               
370                                                 <?php if ($this->sub_level_pages[$i]['url'] == $this->current_sub_level_page): ?>
371                                                 <li id="test" ><?php echo $this->sub_level_pages[$i]['title']; ?></li>
372                                                 <?php else: ?>
373                                                 <li><a href="<?php echo $this->sub_level_pages[$i]['url']; ?>"><?php echo $this->sub_level_pages[$i]['title']; ?></a></li>
374                                                 <?php endif; ?>
375                                         <?php if ($i < $num_pages-1): 
376                                                 echo " ";?>
377                                         <?php endif; ?>
378                                         <?php endfor; ?>
379                                         </ul>
380                                 </div> <!--  end subnavlistcontainer -->
381                 <?php endif; ?>
382 <?php endif; ?>
383
384
385 <!--  end header template for iphone, android, blackberry -->
386 <?php if ($this->mobile_device_type == IPAD_DEVICE): ?><!-- start header template for ipad/tablets -->
387 <body onload="<?php echo $this->onload; ?>" class="fl-theme-iphone ui-mobile-viewport">
388
389 <div id="wrapper">
390 <div id="main">
391         <div id="header" role="header">
392
393         <div id="header-section-title">
394                         <!-- <?php if (isset($_SESSION['valid_user']) && $_SESSION['valid_user']): 
395                                         echo '<div id="site-name">'.stripslashes(SITE_NAME).'</div>'; 
396                                 endif; ?> --> 
397                         <h1 id="section-title"><?php echo $this->section_title; ?>
398                                 <?php if ((isset($this->course_id) && $this->course_id > 0) && ($_SESSION['enroll'] == AT_ENROLL_NO)) : ?> 
399                                 <!-- <small><a href="<?php echo $this->base_path; ?>enroll.php?course=<?php echo $this->course_id; ?>"><?php echo _AT('enroll_me'); ?></a></small>-->
400                                 <?php endif; ?>
401                                 </h1>
402                 </div>
403         <div id="navigation-contentwrapper" >
404                 
405                 
406         <ul class="home-guide fl-tabs" id="home-guide">
407         <!--  CHECK TO SEE IF USER IS A STUDENT -->
408         <?php if($_SESSION['is_admin'] == 0 && $_SESSION['privileges'] == 0 ):?>
409                 <li><a href="<?php echo $this->base_path; ?>users/index.php"><?php echo _AT("home"); ?></a></li> 
410         <?php endif;?>          
411         <!--  CHECK TO SEE IF USER IS AN ADMINISTRATOR -->
412         <?php //if($_SESSION['is_admin'] == 0 && $_SESSION['privileges'] == 1):
413                 if($_SESSION['is_admin'] == 0 && $_SESSION['privileges'] == AT_ADMIN_PRIV_ADMIN):?>
414                 <li><a href="<?php echo $this->base_path; ?>admin/index.php"><?php echo _AT("home"); ?></a></li> 
415         <?php endif;?>
416         <!--  CHECK TO SEE IF USER IS AN INSTRUCTOR -->
417         <?php if($_SESSION['is_admin'] == 1): ?>
418                 <li><a href="<?php echo $this->base_path; ?>users/index.php"><?php echo _AT("home"); ?></a></li> 
419         <?php endif;?>
420         
421         <?php if (isset($this->guide) && isset($_SESSION["course_id"]) && $this->guide && ($_SESSION["prefs"]["PREF_SHOW_GUIDE"] || $_SESSION["course_id"] == "-1")) : ?>
422                         <li>
423                         <div id="guide_box">
424                                         <!--    <a href="<?php echo $this->guide; ?>" id="guide" onclick="ATutor.poptastic('<?php echo $this->guide; ?>'); return false;" target="_new"><img src="<?php echo $this->img; ?>guide-icon.png" width="30" height="30" title="guide: <?php echo $this->page_title; ?>"alt="guide: <?php echo $this->page_title; ?>"></img></a> -->
425                 
426                                   <a href="<?php echo $this->guide; ?>" id="guide" onclick="ATutor.poptastic('<?php echo $this->guide; ?>'); return false;" target="_new"><?php echo _AT("guide"); ?></a> 
427                         </div>
428                         </li>
429                         <?php endif; ?>
430                 </ul>
431         
432         <?php if (isset($this->course_id) && $this->course_id > 0): ?>
433                         
434         
435                 <ul class="sequence-links fl-tabs" id="sequence-links">
436                         <?php if ($_SESSION["prefs"]["PREF_SHOW_NEXT_PREVIOUS_BUTTONS"]) { ?>
437                                 <?php if ($this->sequence_links['resume']): ?>
438                                                 <li>
439                                                 <a href="<?php echo $this->sequence_links['resume']['url']; ?>" class="previous-next" title="<?php echo _AT('resume').': '.$this->sequence_links['resume']['title']; ?>"><?php echo _AT('resume'); ?></a>
440                                                 </li>
441                                 <?php else:
442                                         if ($this->sequence_links['previous']): ?>
443                                                 <li class="arrow back"><a  href="<?php echo $this->sequence_links['previous']['url']; ?>" class="arrow back" title="<?php echo _AT('previous_topic').': '. $this->sequence_links['previous']['title']; ?>"> <?php echo "Previous"; ?> </a>
444                                                 </li>
445                                         <?php endif;
446                                         if ($this->sequence_links['next']): ?>
447                                                 <li class="arrow forward">
448                                                 <a href="<?php echo $this->sequence_links['next']['url']; ?>" class=""  title="<?php echo _AT('next_topic').': '.$this->sequence_links['next']['title']; ?>"> <?php echo "Next"; ?></a>
449                                                 </li>
450                                         <?php endif; ?>
451                                 <?php endif; ?>
452                         <?php } ?>
453                                 &nbsp;
454                         </ul> <!-- end sequence-links -->
455                 <?php endif; ?>
456                 
457                 <?php if(isset($_SESSION['course_id']) && $_SESSION['course_id'] > 0): ?>       
458                 <div id="course-level-navigation">
459                 
460         
461                         
462                         <div id="content-link-container" role="navigation" aria-live="assertive" class="flc-screenNavigator-navbar ">
463                                 <a id="content_link" class="content_link_tablet content_link" href="javascript:void(0);"><?php echo "Content";//_AT("content_navigation"); ?></a>       
464                         </div>  
465                 </div><!-- course-level navigation -->                          
466                                 <div id="content" style="display: none;" class="triangle-isosceles top right">
467                                         <?php $contentManager->printMainMenu(); ?>
468                                         <script language="javascript" type="text/javascript"></script>
469                                 </div>
470                 
471                 
472                 <?php endif;?>
473         
474         
475                 <!--  this should be a button on its own  -->
476                         <?php if ($this->current_sub_level_page): ?>
477                         <div id="topnavlistcontainer" role="menu" aria-live="assertive" class="topnavlistcontainer fl-container" >
478                         <a class="navigation-bar-button topnavlist-link " id="topnavlist-link" href="javascript:void(0);" tabindex="1"><?php echo _AT('navigation'); ?></a>
479                         
480                                 <div id="navigation-column" class="triangle-isosceles top">
481                                 <!--  requires ARIA roles review -->
482                                 <!--  this should be a button on its own  -->
483                                 <?php if ($this->current_sub_level_page): ?>
484                                 <ul id="topnavlist-tablet"  class="fl-list-menu" role="menu">
485                                         <?php $accesscounter = 0; //initialize ?>
486                                         <?php foreach ($this->top_level_pages as $page): ?>
487                                                 <?php ++$accesscounter; $accesscounter = ($accesscounter == 10 ? 0 : $accesscounter); ?>
488                                                 <?php $accesskey_text = ($accesscounter < 10 ? 'accesskey="'.$accesscounter.'"' : ''); ?>
489                                                 <?php $accesskey_title = ($accesscounter < 10 ? ' Alt+'.$accesscounter : ''); ?>
490                                                 <?php if ($page['url'] == $this->current_top_level_page): ?>
491                                                         <!-- note bug http://issues.fluidproject.org/browse/FLUID-4313 makes class "flc-screenNavigator-backButton fl-link-hilight" not work -->
492                                                         <li role="menuitem"><a  href="<?php echo $page['url']; ?>" <?php echo $accesskey_text; ?> class="flc-screenNavigator-backButton fl-link-hilight" title="<?php echo $page['title'];?>"><?php echo $page['title']; ?></a>  </li>
493                                                 <?php else: ?>
494                                                         <li role="menuitem"><a  href="<?php echo $page['url']; ?>" <?php echo $accesskey_text; ?> title="<?php echo $page['title']; ?>"><?php echo $page['title']; ?></a></li>
495                                                 <?php endif; ?>
496                                 
497                                                 <?php $accesscounter = ($accesscounter == 0 ? 11 : $accesscounter); ?>
498                                         
499                                         <?php endforeach; ?>
500                                          
501                                 </ul>
502                                 <?php endif; ?>
503                         </div>
504                         </div>
505                         <?php endif; ?>
506
507         
508
509
510         
511         </div>
512         </div> <!--  END HEADER -->
513
514 <?php if (count($this->sub_level_pages) > 0): ?>
515                                 <div id="subnavlistcontainer" 
516                                         <div id="subnavbacktopage" >
517                                         <?php if (isset($this->back_to_page)): ?>
518                                                 <a href="<?php echo $this->back_to_page['url']; ?>">
519                                                 <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;
520                                         <?php endif; ?>
521                                         </div>
522                                 
523                                         <!-- Markup for a subnavlist styled like a Gmail dock. Clean up this code for redundancy but it works for now. -->
524                                         <!-- background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#B6C0C6), to(#F8FAFB));  -->
525                                         <ul id="subnavlist" style="text-align: center; border-bottom: 1px #B6C0C6 solid; background: #B6C0C6; ">
526                                         <?php $num_pages = count($this->sub_level_pages); ?>
527                                                 <?php for ($i=0; $i<$num_pages; $i++): ?>       
528                                                         
529                                                         <?php if($num_pages <= 5): ?>
530                                                                 <?php if($this->sub_level_pages[$i][url] == $this->current_sub_level_page): ?>
531                                                                 <li class="selected" style="font-size: 14px; padding-left: .313em; padding-right: .313em;"><a href="<?php echo $this->sub_level_pages[$i]['url']; ?>"><?php echo $this->sub_level_pages[$i]['title']; ?></a></li>
532                                                                 <?php else: ?> 
533                                                                 <li style="font-size: 14px; padding-left: .313em; padding-right: .313em"><a href="<?php echo $this->sub_level_pages[$i]['url']; ?>"><?php echo $this->sub_level_pages[$i]['title']; ?></a></li>
534                                                                 <?php endif; ?> 
535                                                         <?php endif; ?>
536                                                         <?php if($num_pages > 5): ?>
537                                                                 <?php if($i <= 5):?>
538                                                                         <?php if($this->sub_level_pages[$i][url] == $this->current_sub_level_page): ?>
539                                                                                 <li class="selected" style="font-size: 14px; padding-left: .313em; padding-right: .313em;"><a href="<?php echo $this->sub_level_pages[$i]['url']; ?>"><?php echo $this->sub_level_pages[$i]['title']; ?></a></li>
540                                                                         <?php else: ?> 
541                                                                                 <li style="font-size: 14px; padding-left: .313em; padding-right: .313em"><a href="<?php echo $this->sub_level_pages[$i]['url']; ?>"><?php echo $this->sub_level_pages[$i]['title']; ?></a></li>
542                                                                         <?php endif; ?> 
543                                                                 <?php endif;?>
544                                                                 <?php if($i== 6): ?>
545                                                                         <li class="more-button-surround" style="font-size: 14px; padding-left: .313em; padding-right: .313em"><a class="more-button" href="javascript:void(0);" tabindex="1">More</a></li>
546                                                                         <ul class="subnavlist-more">
547                                                                         <li class="more-item" style="font-size: 14px; list-style-type: bullet"><a href="<?php echo $this->sub_level_pages[$i]['url']; ?>"><?php echo $this->sub_level_pages[$i]['title']; ?></a></li>
548                                                                         
549                                                                 <?php endif;?>
550                                                                 <?php if($i > 6 && $i < $num_pages): ?>
551                                                                         <li style="font-size: 14px; list-style-type: bullet"><a href="<?php echo $this->sub_level_pages[$i]['url']; ?>"><?php echo $this->sub_level_pages[$i]['title']; ?></a></li>
552                                                                 <?php endif;?>
553                                                                 <?php if($i==$num_pages): ?>
554                                                                         <li style="font-size: 14px; list-style-type: bullet"><a href="<?php echo $this->sub_level_pages[$i]['url']; ?>"><?php echo $this->sub_level_pages[$i]['title']; ?></a></li>
555                                                                         </ul>
556                                                                 <?php endif; ?>
557                                                         <?php endif; ?>
558                                                 
559                                                 
560                                                         
561                                         <?php if ($i < $num_pages-1): 
562                                                 echo " ";?>
563                                         <?php endif; ?>
564                                         <?php endfor; ?>
565                                         </ul>
566
567                                 </div> <!--  end subnavlistcontainer -->                                
568                 <?php endif; ?> 
569                 
570
571
572         
573         <?php global $msg; $msg->printAll(); $_base_href;?>
574         
575                 
576         <!--  end course-level-naviagtion -->   
577                 
578         <div id="contentwrapper" class="fl-container" >
579
580
581 <?php endif; ?><!--  end header template for ipad/tablets -->