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