(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
98 //hide and show results on Browse Courses page
99 $this->onload .= "
100 jQuery('#results-hide-show-link').click(function(e) {
101   e.stopPropagation();
102   jQuery('#results-display').slideToggle();
103   
104   
105   ";
106 $this->onload .= "});
107 ";
108
109 //hide and show results everywhere else (uses classes) 
110
111 $this->onload .= "
112 jQuery('.results-hide-show-link').click(function(e) {
113   e.stopPropagation();
114         jQuery(this).parent().next('.results-display').slideToggle(); 
115   
116   
117   ";
118 $this->onload .= "});
119 ";
120         
121
122 // Hide the addressbar
123 $this->onload .= "
124 setTimeout(function() { window.scrollTo(0, 1) }, 100);
125 ";
126
127
128
129 ?>
130
131 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
132
133 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="<?php echo $this->lang_code; ?>"> 
134
135 <head>
136         <title><?php echo SITE_NAME; ?> : <?php echo $this->page_title; ?></title>
137         <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $this->lang_charset; ?>" />
138         <meta name="Generator" content="ATutor - Copyright 2005 by http://atutor.ca" />
139         <base href="<?php echo $this->content_base_href; ?>" />
140         <link rel="shortcut icon" href="<?php echo $this->base_path; ?>favicon.ico" type="image/x-icon" /> 
141         <link rel="stylesheet" href="<?php echo $this->base_path.'themes/'.$this->theme; ?>/print.css" type="text/css" media="print" />
142         <!-- mobile fss -->     
143         <link rel="stylesheet" href="<?php echo $this->base_path; ?>jscripts/infusion/framework/fss/css/fss-mobile-layout.css" type="text/css"/>
144         <link rel="stylesheet" href="<?php echo $this->base_path; ?>jscripts/infusion/framework/fss/css/fss-mobile-theme-iphone.css" type="text/css"/>  
145         
146 <?php if ($this->is_mobile_device == true): ?>
147         <?php if ($this->mobile_device_type == ANDROID_DEVICE): ?>
148         <link rel="stylesheet" href="<?php echo $this->base_path.'themes/'.$this->theme; ?>/android.css" type="text/css"/>
149         <meta name="viewport" content="user-scalable=no, width=device-width" />
150         <?php endif; ?>
151         <?php if ($this->mobile_device_type == IPOD_DEVICE || $this->mobile_device_type == IPHONE_DEVICE): ?>
152         <link rel="stylesheet" href="<?php echo $this->base_path.'themes/'.$this->theme; ?>/iphone.css" type="text/css"/>
153         <meta name="viewport" content="user-scalable=no, width=device-width" />
154         <?php endif; ?>
155         <!-- Armin 25.08.2010: Detect BLACKBERRY_DEVICE and use blackberry.css-->
156         <?php if ($this->mobile_device_type == BLACKBERRY_DEVICE): ?>
157         <link rel="stylesheet" href="<?php echo $this->base_path.'themes/'.$this->theme; ?>/blackberry.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 == IPAD_DEVICE): ?>
161         <link rel="stylesheet" href="<?php echo $this->base_path.'themes/'.$this->theme; ?>/tablet.css" type="text/css"/>
162         <meta name="viewport" content="width=768px, minimum-scale=1.0, maximum-scale=1.0" />
163         
164         <?php endif; ?>
165 <?php endif; ?>
166
167         <link rel="stylesheet" href="<?php echo $this->base_path.'themes/'.$this->theme; ?>/forms.css" type="text/css" />
168                 
169         <!-- Fluid Infusion -->
170         <script src="<?php echo $this->base_path; ?>jscripts/infusion/InfusionAll.js" type="text/javascript"></script>
171         <script src="<?php echo $this->base_path;?>jscripts/jQueryMobile/jquery.mobile-1.0b1.min.js" type="text/javascript"></script>
172         <script language="javascript" type="text/javascript">
173
174         //<!--
175         jQuery.noConflict();
176         //-->
177         </script>
178         <script src="<?php echo $this->base_path; ?>jscripts/ATutor.js" type="text/javascript"></script>   
179
180         
181 <?php echo $this->rtl_css; ?>
182 <?php if (isset($this->course_id) && $system_courses[$this->course_id]['rss']): ?>
183         <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" />
184         <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" />
185 <?php endif; ?>
186
187
188 <?php echo $this->custom_css; ?>
189 </head>
190
191
192 <?php if ($this->mobile_device_type != IPAD_DEVICE): ?><!--  smartphone theme only -->
193
194 <body onload="<?php echo $this->onload; ?>" class="fl-theme-iphone ui-mobile-viewport">
195
196 <div id="wrapper">
197 <div id="main">
198         <div id="header">
199
200                 <a href="<?php echo htmlspecialchars($_SERVER['REQUEST_URI'], ENT_QUOTES); ?>#content">
201                 <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>          
202
203                 <div id="header-section-title">
204                         <!-- <?php if (isset($_SESSION['valid_user']) && $_SESSION['valid_user']): 
205                                         echo '<div id="site-name">'.stripslashes(SITE_NAME).'</div>'; 
206                                 endif; ?> --> 
207                         <h1 id="section-title"><?php echo $this->section_title; ?>
208                                 <?php if ((isset($this->course_id) && $this->course_id > 0) && ($_SESSION['enroll'] == AT_ENROLL_NO)) : ?> 
209                                 <!-- <small><a href="<?php echo $this->base_path; ?>enroll.php?course=<?php echo $this->course_id; ?>"><?php echo _AT('enroll_me'); ?></a></small>-->
210                                 <?php endif; ?>
211                                 </h1>
212                 </div>
213         </div> <!--  END HEADER -->
214
215
216         <div id="contentwrapper">
217
218         <!--  Note: ARIA roles cause XHTML validation errors because the XHTML DTD does not yet support ARIA. Use ARIA anyway -->
219
220         <div id="navigation-contentwrapper">
221         <div id="navigation-bar">
222                 <!--  this should be a button on its own  -->
223                         <?php if ($this->current_sub_level_page): ?>
224                         <div id="topnavlistcontainer" role="menu" aria-live="assertive" class="topnavlistcontainer" >
225                         <a class="navigation-bar-button" id="topnavlist-link" href="javascript:void(0);" tabindex="1"><?php echo _AT('navigation'); ?></a>
226                                 <ul id="topnavlist"  class="fl-list-menu">
227                                         <?php $accesscounter = 0; //initialize ?>
228                                         <?php foreach ($this->top_level_pages as $page): ?>
229                                                 <?php ++$accesscounter; $accesscounter = ($accesscounter == 10 ? 0 : $accesscounter); ?>
230                                                 <?php $accesskey_text = ($accesscounter < 10 ? 'accesskey="'.$accesscounter.'"' : ''); ?>
231                                                 <?php $accesskey_title = ($accesscounter < 10 ? ' Alt+'.$accesscounter : ''); ?>
232                                                 <?php if ($page['url'] == $this->current_top_level_page): ?>
233                                                         <li role="menuitem"><a  href="<?php echo $page['url']; ?>" <?php echo $accesskey_text; ?> title="<?php echo $page['title'];?>"><?php echo $page['title']; ?></a>  </li>
234                                                 <?php else: ?>
235                                                         <li role="menuitem"><a  href="<?php echo $page['url']; ?>" <?php echo $accesskey_text; ?> title="<?php echo $page['title']; ?>"><?php echo $page['title']; ?></a></li>
236                                                 <?php endif; ?>
237                                 
238                                                 <?php $accesscounter = ($accesscounter == 0 ? 11 : $accesscounter); ?>
239                                         
240                                         <?php endforeach; ?>
241                                         <?php if(!$this->just_social): ?>
242                                         <li role="menuitem"><a href="<?php echo $this->base_path; ?>search.php"><?php echo _AT('search'); ?></a> </li>
243                                         <?php endif; ?> 
244                                 </ul>
245                         </div>
246                         <?php endif; ?>
247                 </div>
248
249
250
251         <ul class="fl-tabs" id="home-guide">
252         <!--  CHECK TO SEE IF USER IS A STUDENT -->
253         <?php if($_SESSION['is_admin'] == 0 && $_SESSION['privileges'] == 0 ):?>
254                 <li><a class="hover-fl-tabs" href="<?php echo $this->base_path; ?>users/index.php"><?php echo _AT("home"); ?></a></li> 
255         <?php endif;?>          
256         <!--  CHECK TO SEE IF USER IS AN ADMINISTRATOR -->
257         <?php //if($_SESSION['is_admin'] == 0 && $_SESSION['privileges'] == 1):
258                 if($_SESSION['is_admin'] == 0 && $_SESSION['privileges'] == AT_ADMIN_PRIV_ADMIN):?>
259                 <li><a href="<?php echo $this->base_path; ?>admin/index.php"><?php echo _AT("home"); ?></a></li> 
260         <?php endif;?>
261         <!--  CHECK TO SEE IF USER IS AN INSTRUCTOR -->
262         <?php if($_SESSION['is_admin'] == 1): ?>
263                 <li><a href="<?php echo $this->base_path; ?>users/index.php"><?php echo _AT("home"); ?></a></li> 
264         <?php endif;?>
265         
266         <?php if (isset($this->guide) && isset($_SESSION["course_id"]) && $this->guide && ($_SESSION["prefs"]["PREF_SHOW_GUIDE"] || $_SESSION["course_id"] == "-1")) : ?>
267                         <li>
268                         <div id="guide_box">
269                                         <!--    <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> -->
270                 
271                                   <a href="<?php echo $this->guide; ?>" id="guide" onclick="ATutor.poptastic('<?php echo $this->guide; ?>'); return false;" target="_new"><?php echo _AT("guide"); ?></a> 
272                         </div>
273                         </li>
274                         <?php endif; ?>
275                 </ul>
276         </div><!--  END navigation-contentwrapper -->
277         <!-- ENSURE "content_link" DOESN'T APPEAR IF NOT LOGGED IN -->
278         
279         
280         <?php if(isset($_SESSION['course_id']) && $_SESSION['course_id'] > 0): ?> 
281                 <div id="content-link-container" role="navigation" aria-live="assertive" class="flc-screenNavigator-navbar ">
282                 <a id="content_link" href="javascript:void(0);"><?php echo "Course Content Navigation";//_AT("content_navigation"); ?></a>
283                 <div id="content" style=" display: none; position: relative; z-index: 1;">
284                 <?php $contentManager->printMainMenu(); ?>
285                                 <script language="javascript" type="text/javascript"></script>
286                 </div>
287                 </div>
288         <?php endif; ?>
289
290                 <div id="inner-contentwrapper" class="fl-container" >
291
292                         <?php if ((isset($this->course_id) && $this->course_id <= 0)): ?>
293                                 <!-- style="margin-left:0.5em;width:99%;" -->
294                         <?php endif; ?>
295                         <?php if (isset($this->course_id) && $this->course_id > 0): ?>
296                         <div class="sequence-links">
297                         <?php if ($_SESSION["prefs"]["PREF_SHOW_NEXT_PREVIOUS_BUTTONS"]) { ?>
298                                 <?php if ($this->sequence_links['resume']): ?>
299                                                 <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>
300                                 <?php else:
301                                         if ($this->sequence_links['previous']): ?>
302                                                 <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>
303                                         <?php endif;
304                                         if ($this->sequence_links['next']): ?>
305                                                 <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>
306                                         <?php endif; ?>
307                         <?php endif; ?>
308                         <?php } ?>
309                         &nbsp;
310                         </div> <!-- end sequence-links -->
311                 <?php endif; ?>
312
313
314         <div id="contentcolumn">        
315                 
316
317                 <!-- the page title -->
318                 <a name="content" title="<?php echo _AT('content'); ?>"></a>
319                 <h2 class="page-title"><?php echo $this->page_title; ?></h2>
320         
321                 <?php global $msg; $msg->printAll(); $_base_href;?>
322         
323                 <!-- the sub navigation -->
324                 <?php if (count($this->sub_level_pages) > 0): ?>
325                                 <div id="subnavlistcontainer">
326                                         <div id="subnavbacktopage">
327                                         <?php if (isset($this->back_to_page)): ?>
328                                                 <a href="<?php echo $this->back_to_page['url']; ?>">
329                                                 <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;
330                                         <?php endif; ?>
331                                         </div>
332
333                                         <ul id="subnavlist">
334                                         <?php $num_pages = count($this->sub_level_pages); ?>
335                                         <?php for ($i=0; $i<$num_pages; $i++): ?>                               
336                                                 <?php if ($this->sub_level_pages[$i]['url'] == $this->current_sub_level_page): ?>
337                                                 <li id="test" ><?php echo $this->sub_level_pages[$i]['title']; ?></li>
338                                                 <?php else: ?>
339                                                 <li><a href="<?php echo $this->sub_level_pages[$i]['url']; ?>"><?php echo $this->sub_level_pages[$i]['title']; ?></a></li>
340                                                 <?php endif; ?>
341                                         <?php if ($i < $num_pages-1): 
342                                                 echo " ";?>
343                                         <?php endif; ?>
344                                         <?php endfor; ?>
345                                         </ul>
346                                 </div> <!--  end subnavlistcontainer -->
347                 <?php endif; ?>
348 <?php endif; ?>
349
350
351 <!--  end header template for iphone, android, blackberry -->
352 <?php if ($this->mobile_device_type == IPAD_DEVICE): ?><!-- start header template for ipad/tablets -->
353 <body onload="<?php echo $this->onload; ?>" class="fl-theme-iphone ui-mobile-viewport">
354
355 <div id="wrapper">
356 <div id="main">
357         <div id="header" role="header">
358
359                 <a href="<?php echo htmlspecialchars($_SERVER['REQUEST_URI'], ENT_QUOTES); ?>#content">
360                 <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>          
361
362                 
363                 
364                 
365                 <!--  Note: ARIA roles cause XHTML validation errors because the XHTML DTD does not yet support ARIA. Use ARIA anyway -->
366
367         
368         <div id="navigation-contentwrapper">
369         <div id="navigation-bar">
370                 <!--  this should be a button on its own  -->
371                         <?php if ($this->current_sub_level_page): ?>
372                         <div id="topnavlistcontainer" role="menu" aria-live="assertive" class="topnavlistcontainer" >
373                         <a class="navigation-bar-button" id="topnavlist-link" href="javascript:void(0);" tabindex="1"><?php echo _AT('navigation'); ?></a>
374                                 <div id="navigation-column" >
375                                 <!--  requires ARIA roles review -->
376                                 <!--  this should be a button on its own  -->
377                                 <?php if ($this->current_sub_level_page): ?>
378                                 <ul id="topnavlist-tablet"  class="fl-list-menu" role="menu">
379                                         <?php $accesscounter = 0; //initialize ?>
380                                         <?php foreach ($this->top_level_pages as $page): ?>
381                                                 <?php ++$accesscounter; $accesscounter = ($accesscounter == 10 ? 0 : $accesscounter); ?>
382                                                 <?php $accesskey_text = ($accesscounter < 10 ? 'accesskey="'.$accesscounter.'"' : ''); ?>
383                                                 <?php $accesskey_title = ($accesscounter < 10 ? ' Alt+'.$accesscounter : ''); ?>
384                                                 <?php if ($page['url'] == $this->current_top_level_page): ?>
385                                                         <!-- note bug http://issues.fluidproject.org/browse/FLUID-4313 makes class "flc-screenNavigator-backButton fl-link-hilight" not work -->
386                                                         <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>
387                                                 <?php else: ?>
388                                                         <li role="menuitem"><a  href="<?php echo $page['url']; ?>" <?php echo $accesskey_text; ?> title="<?php echo $page['title']; ?>"><?php echo $page['title']; ?></a></li>
389                                                 <?php endif; ?>
390                                 
391                                                 <?php $accesscounter = ($accesscounter == 0 ? 11 : $accesscounter); ?>
392                                         
393                                         <?php endforeach; ?>
394                                          
395                                 </ul>
396                                 <?php endif; ?>
397                         </div>
398                         </div>
399                         <?php endif; ?>
400                 </div>
401
402
403
404         <ul class="fl-tabs" id="home-guide">
405         <!--  CHECK TO SEE IF USER IS A STUDENT -->
406         <?php if($_SESSION['is_admin'] == 0 && $_SESSION['privileges'] == 0 ):?>
407                 <li><a class="hover-fl-tabs" href="<?php echo $this->base_path; ?>users/index.php"><?php echo _AT("home"); ?></a></li> 
408         <?php endif;?>          
409         <!--  CHECK TO SEE IF USER IS AN ADMINISTRATOR -->
410         <?php //if($_SESSION['is_admin'] == 0 && $_SESSION['privileges'] == 1):
411                 if($_SESSION['is_admin'] == 0 && $_SESSION['privileges'] == AT_ADMIN_PRIV_ADMIN):?>
412                 <li><a href="<?php echo $this->base_path; ?>admin/index.php"><?php echo _AT("home"); ?></a></li> 
413         <?php endif;?>
414         <!--  CHECK TO SEE IF USER IS AN INSTRUCTOR -->
415         <?php if($_SESSION['is_admin'] == 1): ?>
416                 <li><a href="<?php echo $this->base_path; ?>users/index.php"><?php echo _AT("home"); ?></a></li> 
417         <?php endif;?>
418         
419         <?php if (isset($this->guide) && isset($_SESSION["course_id"]) && $this->guide && ($_SESSION["prefs"]["PREF_SHOW_GUIDE"] || $_SESSION["course_id"] == "-1")) : ?>
420                         <li>
421                         <div id="guide_box">
422                                         <!--    <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> -->
423                 
424                                   <a href="<?php echo $this->guide; ?>" id="guide" onclick="ATutor.poptastic('<?php echo $this->guide; ?>'); return false;" target="_new"><?php echo _AT("guide"); ?></a> 
425                         </div>
426                         </li>
427                         <?php endif; ?>
428                 </ul>
429         </div><!--  END navigation-contentwrapper -->
430         
431         </div> <!--  END HEADER -->
432
433
434         <div id="contentwrapper" class="fl-container" >
435
436
437
438                 <div id="inner-contentwrapper" >
439
440
441
442         
443 <!--  side menus -->    
444
445                         <?php if ((isset($this->course_id) && $this->course_id <= 0)): ?>
446                                 <!-- style="margin-left:0.5em;width:99%;" -->
447                         <?php endif; ?>
448                         <?php if (isset($this->course_id) && $this->course_id > 0): ?>
449                         <div class="sequence-links">
450                         <?php if ($_SESSION["prefs"]["PREF_SHOW_NEXT_PREVIOUS_BUTTONS"]) { ?>
451                                 <?php if ($this->sequence_links['resume']): ?>
452                                                 <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>
453                                 <?php else:
454                                         if ($this->sequence_links['previous']): ?>
455                                                 <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>
456                                         <?php endif;
457                                         if ($this->sequence_links['next']): ?>
458                                                 <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>
459                                         <?php endif; ?>
460                         <?php endif; ?>
461                         <?php } ?>
462                         &nbsp;
463                 </div> <!-- end sequence-links -->
464                 <?php endif; ?>
465
466
467 <?php if(isset($_SESSION['course_id']) && $_SESSION['course_id'] > 0): ?> 
468 <div id="hide-show-container">
469         <a id="content_link" href="javascript:void(0);"><?php echo "Course Content Navigation";//_AT("content_navigation"); ?></a>
470
471 </div>
472 <div id="results-hide-show" >   
473         
474                 <div id="content-link-container" role="navigation" aria-live="assertive" class="flc-screenNavigator-navbar ">
475                 
476                 <div id="content" style=" display: none; position: relative; z-index: 1;">
477                 <?php $contentManager->printMainMenu(); ?>
478                                 <script language="javascript" type="text/javascript"></script>
479                 </div>
480                 </div>
481         
482 </div>
483 <?php endif; ?>
484 <!-- end side menus -->
485         </div>
486         <div id="contentcolumn" >       
487                 
488
489                 <!-- the page title -->
490                 <a name="content" title="<?php echo _AT('content'); ?>"></a>
491                 <h2 class="page-title"><?php echo $this->page_title; ?></h2>
492         
493                 <?php global $msg; $msg->printAll(); $_base_href;?>
494         
495                 <!-- the sub navigation -->
496                 <?php if (count($this->sub_level_pages) > 0): ?>
497                                 <div id="subnavlistcontainer">
498                                         <div id="subnavbacktopage">
499                                         <?php if (isset($this->back_to_page)): ?>
500                                                 <a href="<?php echo $this->back_to_page['url']; ?>">
501                                                 <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;
502                                         <?php endif; ?>
503                                         </div>
504                                 
505                                         <ul class="fl-tabs">
506                                         <?php $num_pages = count($this->sub_level_pages); ?>
507                                         <?php for ($i=0; $i<$num_pages; $i++): ?>                               
508                                         
509                                                 <li><a href="<?php echo $this->sub_level_pages[$i]['url']; ?>"><?php echo $this->sub_level_pages[$i]['title']; ?></a></li>
510                                                 
511                                         <?php if ($i < $num_pages-1): 
512                                                 echo " ";?>
513                                         <?php endif; ?>
514                                         <?php endfor; ?>
515                                         </ul>
516                                         
517                                         
518                                         
519                                 
520                                 </div> <!--  end subnavlistcontainer -->
521                                 
522                 <?php endif; ?>
523                 
524 <?php endif; ?><!--  end header template for ipad/tablets -->