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