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