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