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