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