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