move code up one directory
[atutor.git] / themes / default / include / header.tmpl.php
1 <?php
2 /************************************************************************/
3 /* ATutor                                                                                                                               */
4 /************************************************************************/
5 /* Copyright (c) 2002-2010                                              */
6 /* Inclusive Design Institute                                           */
7 /* http://atutor.ca                                                     */
8 /* This program is free software. You can redistribute it and/or        */
9 /* modify it under the terms of the GNU General Public License          */
10 /* as published by the Free Software Foundation.                        */
11 /************************************************************************/
12 // $Id: header.tmpl.php 3825 2005-03-11 15:35:51 joel $
13 if (!defined('AT_INCLUDE_PATH')) { exit; }
14 /* available header.tmpl.php variables:
15  * $this->lang_code                     the ISO language code
16  * SITE_NAME                            the site name from the config file
17  * $this->page_title            the name of this page to use in the <title>
18  * $this->lang_charset          the ISO language character set
19  * $this->content_base_href     the <base href> to use for this page
20  * $this->base_path                     the absolute path to this atutor installation
21  * $this->rtl_css                       if set, the path to the RTL style sheet
22  * $this->icon                  the path to a course icon
23  * $this->banner_style          -deprecated-
24  * $this->cats           array or course categories
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->top_level_pages       associative array of the top level navigation
35  * $this->current_top_level_page        the full path to the current top level page with file name
36  * $this->sub_level_pages                       associate array of sub level navigation
37  * $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)
38  * $this->current_sub_level_page        the full path to the current sub level page with file name
39  * $this->guide                         the full path and file name to the guide page
40  * $this->shortcuts         the array of tools' shortcuts to display at top right corner. Used by content.php and edit_content_folder.php
41  * ======================================
42  * top_level_pages           array(array('url', 'title'))     the top level pages. ATutor default creates tabs.
43  * section_title             string                           the name of the current section. either name of the course, administration, my start page, etc.
44  * page_title                string                           the title of the current page.
45  * path                      array(array('url', 'title'))     the path to the current page.
46  * back_to_page              array('url', 'title')            the link back to the part of the current page, if needed.
47  * current_top_level_page    string                           full url to the current top level page in "top_leve_pages"
48  * current_sub_level_page    string                           full url to the current sub level page in the "sub_level_pages"
49  * sub_level_pages           array(array('url', 'title'))     the sub level pages.
50  * is_mobile_device          true or false                    the request is from a mobile device or a desktop device
51  * mobile_device_type        One of the constants: IPOD_DEVICE, BLACKBERRY_DEVICE, ANDROID_DEVICE, UNKNOWN_DEVICE (@see include/lib/constants.inc.php)
52  */
53
54 // will have to be moved to the header.inc.php
55 global $system_courses, $_custom_css, $db;
56 ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
57
58 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="<?php echo $this->lang_code; ?>"> 
59 <head>
60         <title><?php echo SITE_NAME; ?> : <?php echo $this->page_title; ?></title>
61         <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $this->lang_charset; ?>" />
62         <meta name="Generator" content="ATutor - Copyright 2010 by http://atutor.ca" />
63         <base href="<?php echo $this->content_base_href; ?>" />
64         <link rel="shortcut icon" href="<?php echo $this->base_path; ?>favicon.ico" type="image/x-icon" />
65         <link rel="stylesheet" href="<?php echo $this->base_path.'themes/'.$this->theme; ?>/print.css" type="text/css" media="print" />
66         <link rel="stylesheet" href="<?php echo $this->base_path.'jscripts/infusion/framework/fss/css/fss-layout.css'; ?>" type="text/css" />
67         <link rel="stylesheet" href="<?php echo $this->base_path.'themes/'.$this->theme; ?>/styles.css" type="text/css" />
68         <!--[if IE]>
69           <link rel="stylesheet" href="<?php echo $this->base_path.'themes/'.$this->theme; ?>/ie_styles.css" type="text/css" />
70         <![endif]-->
71         <!--[if IE8]>
72           <link rel="stylesheet" href="<?php echo $this->base_path.'themes/'.$this->theme; ?>/ie8_styles.css" type="text/css" />
73         <![endif]-->
74     <link rel="stylesheet" href="<?php echo $this->base_path.'themes/'.$this->theme; ?>/forms.css" type="text/css" />
75
76 <?php if (isset($this->course_id) && $system_courses[$this->course_id]['rss']): ?>
77         <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" />
78         <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" />
79 <?php endif; ?>
80
81     <!-- Fluid and jQuery Dependencies -->
82     <script type="text/javascript" src="<?php echo $this->base_href; ?>jscripts/infusion/InfusionAll.js"></script>
83     <script type="text/javascript" src="<?php echo $this->base_href; ?>jscripts/infusion/framework/enhancement/js/ProgressiveEnhancement.js"></script>
84         
85         <script language="javascript" type="text/javascript">
86         //<!--
87         jQuery.noConflict();
88         //-->
89         </script>
90     <script src="<?php echo $this->base_path; ?>jscripts/ATutor.js" type="text/javascript"></script>   
91     <?php echo $this->custom_css; ?>
92     <?php echo $this->rtl_css; ?>
93     <style id="pref_style" type="text/css"></style> 
94 </head>
95 <body onload="<?php echo $this->onload; ?>">
96 <div class="page_wrapper">
97 <div id="header">
98 <div class="bypass">
99         <a href="<?php echo htmlspecialchars($_SERVER['REQUEST_URI'], ENT_QUOTES); ?>#content" accesskey="c">
100         <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>
101
102         <a href="<?php echo htmlspecialchars($_SERVER['REQUEST_URI'], ENT_QUOTES); ?>#menu<?php echo htmlentities_utf8($_REQUEST['cid']);  ?>"  accesskey="m"><img src="<?php echo $this->base_path; ?>images/clr.gif" height="1" width="1" border="0" alt="<?php echo _AT('goto_menu'); ?> ALT+m" /></a>
103 </div>  
104         <?php if (isset($_SESSION['valid_user']) && $_SESSION['valid_user']): 
105                 echo '<div class="site-name">'.stripslashes(SITE_NAME).'</div>'; 
106         else:
107                 echo '<br />';  
108         endif; ?>
109
110         <div id="top-links"> <!-- top help/search/login links -->
111                           <div id="top-links-jump">
112                 <?php if (isset($_SESSION['member_id']) && $_SESSION['member_id']): ?>
113                         <?php if(!$this->just_social): ?>
114                         <!-- start the jump menu -->
115                         <?php if (empty($_GET)): ?>
116                                 <form method="post" action="<?php echo $this->base_path; ?>bounce.php?p=<?php echo urlencode($this->rel_url); ?>" target="_top">
117                         <?php else: ?>
118                                 <form method="post" action="<?php echo $this->base_path; ?>bounce.php" target="_top">
119                         <?php endif; ?>
120                         <label for="jumpmenu" accesskey="j"></label>
121                                 <select name="course" id="jumpmenu" title="<?php echo _AT('jump'); ?>:  Alt-j">                                                 
122                                         <option value="0"><?php echo _AT('my_start_page'); ?></option>
123                                         <optgroup label="<?php echo _AT('courses_below'); ?>">
124                                                 <?php foreach ($this->nav_courses as $this_course_id => $this_course_title): ?>
125                                                         <option value="<?php echo $this_course_id; ?>"><?php echo $this_course_title; ?></option>
126                                                 <?php endforeach; ?>
127                                         </optgroup>
128                                 </select> <input type="submit" name="jump" value="<?php echo _AT('jump'); ?>" class="button" /> </form>
129                         <!-- /end the jump menu -->
130                         <?php endif; ?>
131                         </div>
132                         <div id="top-links-text">
133                         <?php if ($_SESSION['is_super_admin']): ?>
134                                 <a href="<?php echo $this->base_path; ?>bounce.php?admin"><?php echo _AT('return_to_admin_area'); ?></a> | 
135                         <?php endif; ?>
136
137                         <?php if ($this->course_id > -1): ?>
138                                 <?php if (get_num_new_messages()): ?>
139                                         <a href="<?php echo $this->base_path; ?>inbox/index.php"><?php echo _AT('inbox'); ?> (<?php echo get_num_new_messages(); ?>)</a> 
140                                 <?php else: ?>
141                                         <a href="<?php echo $this->base_path; ?>inbox/index.php"><?php echo _AT('inbox'); ?></a>
142                                 <?php endif; ?>
143                         <?php endif; ?>
144                 <?php endif; ?>
145                 <?php if(!$this->just_social): ?>
146                         <a href="<?php echo $this->base_path; ?>search.php"><?php echo _AT('search'); ?></a> 
147                 <?php endif; ?>
148                 <a href="<?php echo $this->base_path; ?>help/index.php"><?php echo _AT('help'); ?></a>
149                 </div>
150
151         </div>
152
153         <?php // if (!empty($this->icon)) { // if a course icon is available, display it here.  ?>
154                 <!--<a href="<?php echo $this->base_path.url_rewrite('index.php'); ?>"><img src="<?php echo $this->icon; ?>" class="headicon" alt="<?php echo  _AT('home'); ?>" /></a>   -->
155         <?php // } ?>
156
157         <?php
158         // If there is a custom course banner in the file manager called banner.html, display it here
159         @readfile(AT_CONTENT_DIR . $this->course_id.'/banner.html'); 
160
161         /*
162         and example banner.html file might look like:
163         <div style="width: 760px; height: 42px; background: white;"><img src="http://[mysite]/atutor15rc3/banners/kart-camb.jpg"></div>
164         */
165
166         ?>
167         <!-- section title -->
168
169         <!-- Course Title -->
170         <div id="course_title_container" <?php if(empty($this->icon)){echo ' style="left:1em;"';}   ?>>
171         <h1 id="section-title"><?php echo $this->section_title; ?>
172                 <?php if ((isset($this->course_id) && $this->course_id > 0) && ($_SESSION['enroll'] == AT_ENROLL_NO)) : ?> 
173                         - <small><a href="<?php echo $this->base_path; ?>enroll.php?course=<?php echo $this->course_id; ?>"><?php echo _AT('enroll_me'); ?></a></small>
174                 <?php endif; ?>
175         </h1>
176         </div>
177
178
179 </div>
180
181 <div id="topnavlistcontainer">
182 <!-- the main navigation. in our case, tabs -->
183         <ul id="topnavlist">
184                 <?php $accesscounter = 0; //initialize ?>
185                 <?php foreach ($this->top_level_pages as $page): ?>
186                         <?php ++$accesscounter; $accesscounter = ($accesscounter == 10 ? 0 : $accesscounter); ?>
187                         <?php $accesskey_text = ($accesscounter < 10 ? 'accesskey="'.$accesscounter.'"' : ''); ?>
188                         <?php $accesskey_title = ($accesscounter < 10 ? ' Alt+'.$accesscounter : ''); ?>
189                         <?php if ($page['url'] == $this->current_top_level_page): ?>
190                                 <li><a href="<?php echo $page['url']; ?>" <?php echo $accesskey_text; ?> title="<?php echo $page['title'] . $accesskey_title; ?>" class="active"><?php echo $page['title']; ?></a></li>
191                         <?php else: ?>
192                                 <li><a href="<?php echo $page['url']; ?>" <?php echo $accesskey_text; ?> title="<?php echo $page['title'] . $accesskey_title; ?>"><?php echo $page['title']; ?></a></li>
193                         <?php endif; ?>
194                         <?php $accesscounter = ($accesscounter == 0 ? 11 : $accesscounter); ?>
195                 <?php endforeach; ?>
196         </ul>
197 </div>
198
199 <div class="logoutbar">
200
201         <div>
202                 <?php if (isset($_SESSION['valid_user']) && $_SESSION['valid_user']): ?>
203                 <?php $path_parts = explode("/", $this->current_top_level_page); 
204                       $last_path_part = $path_parts[sizeof($path_parts) - 1];
205                if (!admin_authenticate(AT_ADMIN_PRIV_ADMIN, AT_PRIV_RETURN) && $last_path_part != 'preferences.php') {?>
206                     <a class="pref_wiz_launcher"><img border="0" alt="<?php echo _AT('preferences').' - '._AT('new_window'); ?>" src="<?php echo $this->base_href; ?>images/wand.png" class="img1616"/></a> |
207                     <?php } ?> 
208                         <strong><?php echo get_display_name($_SESSION['member_id']); ?></strong> | 
209                         <a href="<?php echo $this->base_path; ?>logout.php"><?php echo _AT('logout'); ?></a>
210                 <?php else: ?>
211                          <a href="<?php echo $this->base_path; ?>login.php?course=<?php echo $this->course_id; ?>"><?php echo _AT('login'); ?></a> | <a href="<?php echo $this->base_path; ?>registration.php"><?php echo _AT('register'); ?></a>
212                 <?php endif; ?>
213         </div>
214
215 </div>
216
217           <?php if (isset($_SESSION["prefs"]["PREF_SHOW_BREAD_CRUMBS"]) && $_SESSION["prefs"]["PREF_SHOW_BREAD_CRUMBS"]) { ?>
218                   <!-- the bread crumbs -->
219                 <div class="crumbcontainer">
220                   <div id="breadcrumbs">
221                           <?php foreach ($this->path as $page): ?>
222                                   <a href="<?php echo $page['url']; ?>"><?php echo htmlspecialchars($page['title'], ENT_COMPAT, "UTF-8"); ?></a> > 
223                           <?php endforeach; ?> <?php echo $this->page_title; ?>
224                   </div>
225           <?php } else { ?>
226            <div class="crumbcontainer" style="padding-bottom:1.2em;">
227           <?php } ?>
228                   <?php if (isset($this->guide) && isset($_SESSION["course_id"]) && $this->guide && ($_SESSION["prefs"]["PREF_SHOW_GUIDE"] || $_SESSION["course_id"] == "-1")) : ?>
229       <div id="guide_box">
230                           <a href="<?php echo $this->guide; ?>" id="guide" onclick="ATutor.poptastic('<?php echo $this->guide; ?>'); return false;" target="_new"><?php echo $this->page_title; ?></a>
231       </div>
232                   <?php endif; ?>
233       <?php if ($this->shortcuts): ?>
234       <div id="shortcuts">
235               <ul>
236                       <?php foreach ($this->shortcuts as $link): ?>
237                               <li><a href="<?php echo $link['url']; ?>"><img src="<?php echo $link['icon']; ?>" alt="<?php echo $link['title']; ?>"  title="<?php echo $link['title']; ?>" class="shortcut_icon"/><!-- <?php echo $link['title']; ?> --></a></li>
238                       <?php endforeach; ?>
239               </ul>
240       </div>
241       <?php endif; ?>
242       </div>
243
244 <div id="contentwrapper" 
245                 <?php if ($_SESSION["prefs"]["PREF_SHOW_BREAD_CRUMBS"] == 0):
246                         $style.='margin-top:-2em;';
247                         echo 'style="'.$style.'"';
248                 endif; ?>>
249         <?php if (isset($this->course_id) && $this->course_id > 0 && $system_courses[$this->course_id]['side_menu']): ?>
250                 <div id="leftcolumn">
251                   <a name="menu"></a>
252                      <div id="side-menu">
253                         <?php require(AT_INCLUDE_PATH.'side_menu.inc.php'); ?>
254                     </div>
255                 </div>
256         <?php endif; ?>
257
258         <div id="contentcolumn">
259                 <?php if (isset($this->course_id) && $this->course_id > 0 && $system_courses[$this->course_id]['side_menu']): ?>
260                 <div id="menutoggle">
261                    <a href="javascript:void(0)" accesskey="n"><img src="" title="" alt="" border="0" class="img1616"/></a>
262                 </div>
263
264                 <div class="sequence-links">
265                 <?php if ($_SESSION["prefs"]["PREF_SHOW_NEXT_PREVIOUS_BUTTONS"]) { ?>
266                         <?php if ($this->sequence_links['resume']): ?>
267                                         <a style="color:white;" href="<?php echo $this->sequence_links['resume']['url']; ?>" accesskey="."><img src="<?php echo $this->img; ?>resume.png" border="0" title="<?php echo _AT('resume').': '.$this->sequence_links['resume']['title']; ?> Alt+." alt="<?php echo $this->sequence_links['resume']['title']; ?> Alt+." class="img1616" /></a>
268                         <?php else:
269                                 if ($this->sequence_links['previous']): ?>
270                                         <a href="<?php echo $this->sequence_links['previous']['url']; ?>" title="<?php echo _AT('previous_topic').': '. $this->sequence_links['previous']['title']; ?> Alt+," accesskey=","><img src="<?php echo $this->img; ?>previous.png" border="0" alt="<?php echo _AT('previous_topic').': '. $this->sequence_links['previous']['title']; ?> Alt+," class="img1616" /></a>
271                                 <?php endif;
272                                 if ($this->sequence_links['next']): ?>
273                                         <a href="<?php echo $this->sequence_links['next']['url']; ?>" title="<?php echo _AT('next_topic').': '.$this->sequence_links['next']['title']; ?> Alt+." accesskey="."><img src="<?php echo $this->img; ?>next.png" border="0" alt="<?php echo _AT('next_topic').': '.$this->sequence_links['next']['title']; ?> Alt+." class="img1616" /></a>
274                                 <?php endif; ?>
275                         <?php endif; ?>
276                 <?php } ?>
277                         &nbsp;
278                 </div>
279                 <?php endif; ?>
280
281         <!-- the page title -->
282         <a name="content" title="<?php echo _AT('content'); ?>"></a>
283         <h2 class="page-title"><?php echo $this->page_title; ?></h2>
284         <?php global $msg; $msg->printAll(); $_base_href;?>
285
286         <?php if (count($this->sub_level_pages) > 0): ?>
287
288 <!-- <div id="topnavlistcontainer">
289         <ul id="topnavlist">
290                 <?php $accesscounter = 0; //initialize ?>
291                 <?php foreach ($this->top_level_pages as $page): ?>
292                         <?php ++$accesscounter; $accesscounter = ($accesscounter == 10 ? 0 : $accesscounter); ?>
293                         <?php $accesskey_text = ($accesscounter < 10 ? 'accesskey="'.$accesscounter.'"' : ''); ?>
294                         <?php $accesskey_title = ($accesscounter < 10 ? ' Alt+'.$accesscounter : ''); ?>
295                         <?php if ($page['url'] == $this->current_top_level_page): ?>
296                                 <li><a href="<?php echo $page['url']; ?>" <?php echo $accesskey_text; ?> title="<?php echo $page['title'] . $accesskey_title; ?>" class="active"><?php echo $page['title']; ?></a></li>
297                         <?php else: ?>
298                                 <li><a href="<?php echo $page['url']; ?>" <?php echo $accesskey_text; ?> title="<?php echo $page['title'] . $accesskey_title; ?>"><?php echo $page['title']; ?></a></li>
299                         <?php endif; ?>
300                         <?php $accesscounter = ($accesscounter == 0 ? 11 : $accesscounter); ?>
301                 <?php endforeach; ?>
302         </ul>
303 </div> -->
304
305                 <div id="subnavlistcontainer">
306                         <div id="subnavbacktopage">
307                         <?php if (isset($this->back_to_page)): ?>
308                                 <a href="<?php echo $this->back_to_page['url']; ?>">
309                                 <img border="0" width="10" height="11" alt="<?php echo _AT('back_to').' '.htmlentities_utf8($this->back_to_page['title']); ?>" src="<?php echo $this->base_href; ?>images/arrowicon.gif" style="float:left;" class="img1111"/></a>&nbsp;
310                         <?php endif; ?>
311                         </div>
312
313                         <ul id="subnavlist">
314                         <?php $num_pages = count($this->sub_level_pages); 
315
316
317
318 ?>
319                         <?php for ($i=0; $i<$num_pages; $i++): ?>
320                                 
321                                 <?php if ($this->sub_level_pages[$i]['url'] == $this->current_sub_level_page): ?>
322                                       <li class="active"><?php echo htmlentities_utf8($this->sub_level_pages[$i]['title']); ?></li>
323                                 <?php else: ?>
324                                         <li><a href="<?php echo $this->sub_level_pages[$i]['url']; ?>"><?php echo htmlentities_utf8($this->sub_level_pages[$i]['title']); ?></a></li>
325                                 <?php endif; ?>
326                                 <?php if ($i < $num_pages-1): 
327                                         echo " ";?>
328                                 <?php endif; ?>
329                         <?php endfor; ?>
330                         </ul>
331                 </div>
332         <?php endif; ?>
333
334 <!-- the main navigation. in our case, tabs -->