(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 <!--  check to see if skip links are needed. 
372                 <a href="<?php echo htmlspecialchars($_SERVER['REQUEST_URI'], ENT_QUOTES); ?>#content">
373                 <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>          
374  -->
375                 
376                 
377                 
378                 <!--  Note: ARIA roles cause XHTML validation errors because the XHTML DTD does not yet support ARIA. Use ARIA anyway -->
379
380         
381         <div id="navigation-contentwrapper" >
382         <div id="navigation-bar">
383                 <!--  this should be a button on its own  -->
384                         <?php if ($this->current_sub_level_page): ?>
385                         <div id="topnavlistcontainer" role="menu" aria-live="assertive" class="topnavlistcontainer fl-container" >
386                         <a class="navigation-bar-button topnavlist-link " id="topnavlist-link" href="javascript:void(0);" tabindex="1"><?php echo _AT('navigation'); ?></a>
387                         
388                                 <div id="navigation-column" class="triangle-isosceles top">
389                                 <!--  requires ARIA roles review -->
390                                 <!--  this should be a button on its own  -->
391                                 <?php if ($this->current_sub_level_page): ?>
392                                 <ul id="topnavlist-tablet"  class="fl-list-menu" role="menu">
393                                         <?php $accesscounter = 0; //initialize ?>
394                                         <?php foreach ($this->top_level_pages as $page): ?>
395                                                 <?php ++$accesscounter; $accesscounter = ($accesscounter == 10 ? 0 : $accesscounter); ?>
396                                                 <?php $accesskey_text = ($accesscounter < 10 ? 'accesskey="'.$accesscounter.'"' : ''); ?>
397                                                 <?php $accesskey_title = ($accesscounter < 10 ? ' Alt+'.$accesscounter : ''); ?>
398                                                 <?php if ($page['url'] == $this->current_top_level_page): ?>
399                                                         <!-- note bug http://issues.fluidproject.org/browse/FLUID-4313 makes class "flc-screenNavigator-backButton fl-link-hilight" not work -->
400                                                         <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>
401                                                 <?php else: ?>
402                                                         <li role="menuitem"><a  href="<?php echo $page['url']; ?>" <?php echo $accesskey_text; ?> title="<?php echo $page['title']; ?>"><?php echo $page['title']; ?></a></li>
403                                                 <?php endif; ?>
404                                 
405                                                 <?php $accesscounter = ($accesscounter == 0 ? 11 : $accesscounter); ?>
406                                         
407                                         <?php endforeach; ?>
408                                          
409                                 </ul>
410                                 <?php endif; ?>
411                         </div>
412                         </div>
413                         <?php endif; ?>
414
415         
416
417         <ul class="home-guide fl-tabs" id="home-guide">
418         <!--  CHECK TO SEE IF USER IS A STUDENT -->
419         <?php if($_SESSION['is_admin'] == 0 && $_SESSION['privileges'] == 0 ):?>
420                 <li><a href="<?php echo $this->base_path; ?>users/index.php"><?php echo _AT("home"); ?></a></li> 
421         <?php endif;?>          
422         <!--  CHECK TO SEE IF USER IS AN ADMINISTRATOR -->
423         <?php //if($_SESSION['is_admin'] == 0 && $_SESSION['privileges'] == 1):
424                 if($_SESSION['is_admin'] == 0 && $_SESSION['privileges'] == AT_ADMIN_PRIV_ADMIN):?>
425                 <li><a href="<?php echo $this->base_path; ?>admin/index.php"><?php echo _AT("home"); ?></a></li> 
426         <?php endif;?>
427         <!--  CHECK TO SEE IF USER IS AN INSTRUCTOR -->
428         <?php if($_SESSION['is_admin'] == 1): ?>
429                 <li><a href="<?php echo $this->base_path; ?>users/index.php"><?php echo _AT("home"); ?></a></li> 
430         <?php endif;?>
431         
432         <?php if (isset($this->guide) && isset($_SESSION["course_id"]) && $this->guide && ($_SESSION["prefs"]["PREF_SHOW_GUIDE"] || $_SESSION["course_id"] == "-1")) : ?>
433                         <li>
434                         <div id="guide_box">
435                                         <!--    <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> -->
436                 
437                                   <a href="<?php echo $this->guide; ?>" id="guide" onclick="ATutor.poptastic('<?php echo $this->guide; ?>'); return false;" target="_new"><?php echo _AT("guide"); ?></a> 
438                         </div>
439                         </li>
440                         <?php endif; ?>
441                 </ul>
442         </div><!--  END navigation-contentwrapper -->
443         </div>
444         </div> <!--  END HEADER -->
445
446 <?php if (count($this->sub_level_pages) > 0): ?>
447                                 <div id="subnavlistcontainer" 
448                                         <div id="subnavbacktopage" >
449                                         <?php if (isset($this->back_to_page)): ?>
450                                                 <a href="<?php echo $this->back_to_page['url']; ?>">
451                                                 <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;
452                                         <?php endif; ?>
453                                         </div>
454                                 
455                                         <!-- Markup for a subnavlist styled like a Gmail dock. Clean up this code for redundancy but it works for now. -->
456                                         <!-- background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#B6C0C6), to(#F8FAFB));  -->
457                                         <ul id="subnavlist" style="text-align: center; border-bottom: 1px #B6C0C6 solid; background: #B6C0C6; ">
458                                         <?php $num_pages = count($this->sub_level_pages); ?>
459                                                 <?php for ($i=0; $i<$num_pages; $i++): ?>       
460                                                         
461                                                         <?php if($num_pages <= 5): ?>
462                                                                 <?php if($this->sub_level_pages[$i][url] == $this->current_sub_level_page): ?>
463                                                                 <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>
464                                                                 <?php else: ?> 
465                                                                 <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>
466                                                                 <?php endif; ?> 
467                                                         <?php endif; ?>
468                                                         <?php if($num_pages > 5): ?>
469                                                                 <?php if($i <= 5):?>
470                                                                         <?php if($this->sub_level_pages[$i][url] == $this->current_sub_level_page): ?>
471                                                                                 <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>
472                                                                         <?php else: ?> 
473                                                                                 <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>
474                                                                         <?php endif; ?> 
475                                                                 <?php endif;?>
476                                                                 <?php if($i== 6): ?>
477                                                                         <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>
478                                                                         <ul class="subnavlist-more">
479                                                                         <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>
480                                                                         
481                                                                 <?php endif;?>
482                                                                 <?php if($i > 6 && $i < $num_pages): ?>
483                                                                         <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>
484                                                                 <?php endif;?>
485                                                                 <?php if($i==$num_pages): ?>
486                                                                         <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>
487                                                                         </ul>
488                                                                 <?php endif; ?>
489                                                         <?php endif; ?>
490                                                 
491                                                 
492                                                         
493                                         <?php if ($i < $num_pages-1): 
494                                                 echo " ";?>
495                                         <?php endif; ?>
496                                         <?php endfor; ?>
497                                         </ul>
498
499                                 </div> <!--  end subnavlistcontainer -->                                
500                 <?php endif; ?> 
501 <?php if(isset($_SESSION['course_id']) && $_SESSION['course_id'] > 0): ?>       
502
503
504
505
506 <div id="course-level-navigation">
507                 
508         <?php if (isset($this->course_id) && $this->course_id > 0): ?>
509                         
510         
511                 <ul class="sequence-links fl-tabs" id="sequence-links">
512                         <?php if ($_SESSION["prefs"]["PREF_SHOW_NEXT_PREVIOUS_BUTTONS"]) { ?>
513                                 <?php if ($this->sequence_links['resume']): ?>
514                                                 <li>
515                                                 <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>
516                                                 </li>
517                                 <?php else:
518                                         if ($this->sequence_links['previous']): ?>
519                                                 <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>
520                                                 </li>
521                                         <?php endif;
522                                         if ($this->sequence_links['next']): ?>
523                                                 <li class="arrow forward">
524                                                 <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>
525                                                 </li>
526                                         <?php endif; ?>
527                                 <?php endif; ?>
528                         <?php } ?>
529                                 &nbsp;
530                         </ul> <!-- end sequence-links -->
531                 <?php endif; ?>
532                         
533                         <div id="content-link-container" role="navigation" aria-live="assertive" class="flc-screenNavigator-navbar ">
534                                 <a id="content_link" class="content_link_tablet content_link" href="javascript:void(0);"><?php echo "Content";//_AT("content_navigation"); ?></a>       
535                         </div>          
536                                 <div id="content" style="display: none;" class="triangle-isosceles top right">
537                                         <?php $contentManager->printMainMenu(); ?>
538                                         <script language="javascript" type="text/javascript"></script>
539                                 </div>
540                 
541 </div><!-- course-level navigation -->          
542
543 <?php endif;?>
544
545         
546         <?php global $msg; $msg->printAll(); $_base_href;?>
547         
548                 
549         <!--  end course-level-naviagtion -->   
550                 
551         <div id="contentwrapper" class="fl-container" >
552
553
554 <?php endif; ?><!--  end header template for ipad/tablets -->