5c96635775c4cf3e1038be8d724aca9cf2e51fd1
[atutor.git] / docs / themes / default16 / 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->theme                         the directory name of the current theme
25  * $this->base_href                     the full url to this atutor installation
26  * $this->onload                        javascript onload() calls
27  * $this->img                           the absolute path to this theme's images/ directory
28  * $this->sequence_links        associative array of 'previous', 'next', and/or 'resume' links
29  * $this->path                          associative array of path to this page: aka bread crumbs
30  * $this->rel_url                       the relative url from the installation root to this page
31  * $this->nav_courses           associative array of this user's enrolled courses
32  * $this->section_title         the title of this section (course, public, admin, my start page)
33  * $this->top_level_pages       associative array of the top level navigation
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  */
49
50 // will have to be moved to the header.inc.php
51 global $system_courses, $_custom_css,$db;
52
53 ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
54
55 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="<?php echo $this->lang_code; ?>"> 
56 <head>
57         <title><?php echo SITE_NAME; ?> : <?php echo $this->page_title; ?></title>
58         <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $this->lang_charset; ?>" />
59         <meta name="Generator" content="ATutor - Copyright 2010 by http://atutor.ca" />
60         <base href="<?php echo $this->content_base_href; ?>" />
61         <link rel="shortcut icon" href="<?php echo $this->base_path; ?>favicon.ico" type="image/x-icon" />
62         <link rel="stylesheet" href="<?php echo $this->base_path.'themes/'.$this->theme; ?>/print.css" type="text/css" media="print" />
63         <link rel="stylesheet" href="<?php echo $this->base_path.'themes/'.$this->theme; ?>/styles.css" type="text/css" />
64         <!--[if IE]>
65           <link rel="stylesheet" href="<?php echo $this->base_path.'themes/'.$this->theme; ?>/ie_styles.css" type="text/css" />
66         <![endif]-->
67     <link rel="stylesheet" href="<?php echo $this->base_path.'themes/'.$this->theme; ?>/forms.css" type="text/css" />
68 <link rel="stylesheet" type="text/css" href="<?php echo $this->base_path; ?>jscripts/infusion/framework/fss/css/fss-layout.css" />
69
70 <?php if (isset($this->course_id) && $system_courses[$this->course_id]['rss']): ?>
71         <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" />
72         <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" />
73 <?php endif; ?>
74         <script src="<?php echo $this->base_path; ?>jscripts/infusion/InfusionAll.js" type="text/javascript"></script>
75         <script language="javascript" type="text/javascript">
76         //<!--
77         jQuery.noConflict();
78         //-->
79         </script>
80
81     <script src="<?php echo $this->base_path; ?>jscripts/ATutor.js" type="text/javascript"></script>   
82     <?php echo $this->custom_css; ?>
83     <?php echo $this->rtl_css; ?>
84     <style id="pref_style" type="text/css"></style> 
85
86 </head>
87 <body onload="<?php echo $this->onload; ?>"><div id="overDiv" style="position:absolute; visibility:hidden; z-index:1000;"></div>
88
89 <div id="header">
90         <div id="top-links"> <!-- top help/search/login links -->
91                 <?php if (isset($_SESSION['member_id']) && $_SESSION['member_id']): ?>
92                         <!-- start the jump menu -->
93                         <?php if (empty($_GET)): ?>
94                                 <form method="post" action="<?php echo $this->base_path; ?>bounce.php?p=<?php echo urlencode($this->rel_url); ?>" target="_top">
95                         <?php else: ?>
96                                 <form method="post" action="<?php echo $this->base_path; ?>bounce.php" target="_top">
97                         <?php endif; ?>
98                         <label for="jumpmenu" accesskey="j"></label>
99                                 <select name="course" id="jumpmenu" title="<?php echo _AT('jump'); ?>:  Alt-j">                                                 
100                                         <option value="0"><?php echo _AT('my_start_page'); ?></option>
101                                         <optgroup label="<?php echo _AT('courses_below'); ?>">
102                                                 <?php foreach ($this->nav_courses as $this_course_id => $this_course_title): ?>
103                                                         <option value="<?php echo $this_course_id; ?>"><?php echo $this_course_title; ?></option>
104                                                 <?php endforeach; ?>
105                                         </optgroup>
106                                 </select> <input type="submit" name="jump" value="<?php echo _AT('jump'); ?>" class="button" /> </form>
107                         <!-- /end the jump menu -->
108                         <?php if ($_SESSION['is_super_admin']): ?>
109                                 <a href="<?php echo $this->base_path; ?>bounce.php?admin"><?php echo _AT('return_to_admin_area'); ?></a> | 
110                         <?php endif; ?>
111
112                         <?php if ($_SESSION['course_id'] > -1): ?>
113                                 <?php if (get_num_new_messages()): ?>
114                                         <a href="<?php echo $this->base_path; ?>inbox/index.php"><?php echo _AT('inbox'); ?> (<?php echo get_num_new_messages(); ?>)</a> 
115                                 <?php else: ?>
116                                         <a href="<?php echo $this->base_path; ?>inbox/index.php"><?php echo _AT('inbox'); ?></a>
117                                 <?php endif; ?>
118                         <?php endif; ?>
119                 <?php endif; ?>
120                 <a href="<?php echo $this->base_path; ?>search.php"><?php echo _AT('search'); ?></a> <a href="<?php echo $this->base_path; ?>help/index.php"><?php echo _AT('help'); ?></a>
121         </div>
122         <?php if (!empty($this->icon)) { // if a course icon is available, display it here.  ?>
123                 <a href="<?php echo $this->base_path; ?>index.php"><img src="<?php echo $this->icon; ?>" class="headicon" alt="<?php echo  _AT('home'); ?>" /></a>      
124         <?php } ?>
125
126         <a href="<?php echo htmlspecialchars($_SERVER['REQUEST_URI'], ENT_QUOTES); ?>#content" accesskey="c">
127         <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>          
128
129         <a href="<?php echo htmlspecialchars($_SERVER['REQUEST_URI'], ENT_QUOTES); ?>#menu"  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>
130
131         <?php
132         // If there is a custom course banner in the file manager called banner.html, display it here
133         @readfile(AT_CONTENT_DIR . $_SESSION['course_id'].'/banner.txt'); 
134
135         /*
136         and example banner.html file might look like:
137         <div style="width: 760px; height: 42px; background: white;"><img src="http://[mysite]/atutor15rc3/banners/kart-camb.jpg"></div>
138         */
139
140         ?>
141         <!-- section title -->
142         <?php if ($_SESSION['valid_user']): 
143                 echo '<div style="font-size:small;font-weight:bold;padding-left:1em;color:white;">'.stripslashes(SITE_NAME).'</div>'; 
144         else:
145                 echo '<br />';  
146         endif; ?>
147         <h1 id="section-title"><?php echo $this->section_title; ?>
148                 <?php if (($_SESSION['course_id'] > 0) && ($_SESSION['enroll'] == AT_ENROLL_NO)) : ?> 
149                         - <small><a href="<?php echo $this->base_path; ?>enroll.php?course=<?php echo $_SESSION['course_id']; ?>"><?php echo _AT('enroll_me'); ?></a></small>
150                 <?php endif; ?>
151         </h1>
152
153
154 </div>
155
156 <div id="topnavlistcontainer">
157 <!-- the main navigation. in our case, tabs -->
158         <ul id="topnavlist">
159                 <?php foreach ($this->top_level_pages as $page): ?>
160                         <?php ++$accesscounter; $accesscounter = ($accesscounter == 10 ? 0 : $accesscounter); ?>
161                         <?php $accesskey_text = ($accesscounter < 10 ? 'accesskey="'.$accesscounter.'"' : ''); ?>
162                         <?php $accesskey_title = ($accesscounter < 10 ? ' Alt5+'.$accesscounter : ''); ?>
163                         <?php if ($page['url'] == $this->current_top_level_page): ?>
164                                 <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>
165                         <?php else: ?>
166                                 <li><a href="<?php echo $page['url']; ?>" <?php echo $accesskey_text; ?> title="<?php echo $page['title'] . $accesskey_title; ?>"><?php echo $page['title']; ?></a></li>
167                         <?php endif; ?>
168                         <?php $accesscounter = ($accesscounter == 0 ? 11 : $accesscounter); ?>
169                 <?php endforeach; ?>
170         </ul>
171 </div>
172         <!-- the sub navigation -->
173 <div class="logoutbar">
174                 <?php if (isset($_SESSION['valid_user']) && $_SESSION['valid_user']): ?>
175                 <?php $path_parts = explode("/", $this->current_top_level_page); 
176                       $last_path_part = $path_parts[sizeof($path_parts) - 1];
177                if (!admin_authenticate(AT_ADMIN_PRIV_ADMIN, AT_PRIV_RETURN) && $last_path_part != 'preferences.php') {?>
178                     <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" /></a> |
179                     <?php } ?> 
180                         <strong><?php echo get_display_name($_SESSION['member_id']); ?></strong> | 
181                         <a href="<?php echo $this->base_path; ?>logout.php"><?php echo _AT('logout'); ?></a>
182                 <?php else: ?>
183                          <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>
184                 <?php endif; ?>
185 </div>
186
187 <div style="padding:3px;">                      
188         <!-- the bread crumbs -->
189         <div id="breadcrumbs">
190                 <?php foreach ($this->path as $page): ?>
191                         <a href="<?php echo $page['url']; ?>"><?php echo $page['title']; ?></a> > 
192                 <?php endforeach; ?> <?php echo $this->page_title; ?>
193         </div>
194         <?php if ($this->guide): ?>
195                 <a href="<?php echo $this->guide; ?>" id="guide" onclick="ATutor.poptastic('<?php echo $this->guide; ?>'); return false;" target="_new"><strong><?php echo $this->page_title; ?></strong></a>
196         <?php endif; ?>
197 </div>
198
199       <?php if ($this->shortcuts): ?>
200       <div id="shortcuts">
201               <ul>
202                       <?php foreach ($this->shortcuts as $link): ?>
203                               <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>
204                       <?php endforeach; ?>
205               </ul>
206       </div>
207       <?php endif; ?>
208
209 <div id="contentwrapper">
210
211         <?php if (isset($this->course_id) && $this->course_id > 0 && $system_courses[$this->course_id]['side_menu']): ?>
212                 <div id="leftcolumn">
213                   <a name="menu"></a>
214                      <div id="side-menu">
215                         <?php require(AT_INCLUDE_PATH.'side_menu.inc.php'); ?>
216                     </div>
217                 </div>
218         <?php endif; ?>
219
220         <div id="contentcolumn"
221                 <?php if (($_SESSION['course_id'] <= 0) && !$this->side_menu): ?>
222                         style="margin-left:0.5em;width:95%;"
223                 <?php endif; ?>
224                 >
225
226                 <?php if (isset($this->course_id) && $this->course_id > 0 && $system_courses[$this->course_id]['side_menu']): ?>
227                 <div id="menutoggle">
228                     <a accesskey="n"><img src="" title="" alt="" /></a>
229                 </div>
230                 <div id="sequence-links">
231                         <?php if ($this->sequence_links['resume']): ?>
232                                         <a style="color:white;" href="<?php echo $this->sequence_links['resume']['url']; ?>" accesskey="."><img src="<?php echo $this->img; ?>resume.gif" border="0" title="<?php echo _AT('resume').': '.$this->sequence_links['resume']['title']; ?> Alt+." alt="<?php echo $this->sequence_links['resume']['title']; ?> Alt+." class="img-size-ascdesc" /></a>
233                         <?php else:
234                                 if ($this->sequence_links['previous']): ?>
235                                         <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.gif" border="0" alt="<?php echo _AT('previous_topic').': '. $this->sequence_links['previous']['title']; ?> Alt+," class="img-size-ascdesc" /></a>
236                                 <?php endif;
237                                 if ($this->sequence_links['next']): ?>
238                                         <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.gif" border="0" alt="<?php echo _AT('next_topic').': '.$this->sequence_links['next']['title']; ?> Alt+." class="img-size-ascdesc" /></a>
239                                 <?php endif; ?>
240                         <?php endif; ?>
241                         &nbsp;
242                 </div>
243                 <?php endif; ?>
244
245         <!-- the page title -->
246         <a name="content" title="<?php echo _AT('content'); ?>"></a>
247         <h2 class="page-title"><?php echo $this->page_title; ?></h2>
248         <?php global $msg; $msg->printAll(); $_base_href;?>
249
250         <?php if (count($this->sub_level_pages) > 0): ?>
251
252 <!-- <div id="topnavlistcontainer">
253         <ul id="topnavlist">
254                 <?php $accesscounter = 0; //initialize ?>
255                 <?php foreach ($this->top_level_pages as $page): ?>
256                         <?php ++$accesscounter; $accesscounter = ($accesscounter == 10 ? 0 : $accesscounter); ?>
257                         <?php $accesskey_text = ($accesscounter < 10 ? 'accesskey="'.$accesscounter.'"' : ''); ?>
258                         <?php $accesskey_title = ($accesscounter < 10 ? ' Alt+'.$accesscounter : ''); ?>
259                         <?php if ($page['url'] == $this->current_top_level_page): ?>
260                                 <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>
261                         <?php else: ?>
262                                 <li><a href="<?php echo $page['url']; ?>" <?php echo $accesskey_text; ?> title="<?php echo $page['title'] . $accesskey_title; ?>"><?php echo $page['title']; ?></a></li>
263                         <?php endif; ?>
264                         <?php $accesscounter = ($accesscounter == 0 ? 11 : $accesscounter); ?>
265                 <?php endforeach; ?>
266         </ul>
267 </div> -->
268
269                 <div id="subnavlistcontainer">
270                         <div id="subnavbacktopage">
271                         <?php if (isset($this->back_to_page)): ?>
272                                 <a href="<?php echo $this->back_to_page['url']; ?>">
273                                 <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;
274                         <?php endif; ?>
275                         </div>
276
277                         <ul id="subnavlist">
278                         <?php $num_pages = count($this->sub_level_pages); 
279
280
281
282 ?>
283                         <?php for ($i=0; $i<$num_pages; $i++): ?>
284                                 
285                                 <?php if ($this->sub_level_pages[$i]['url'] == $this->current_sub_level_page): ?>
286                                       <li class="active"><?php echo htmlentities_utf8($this->sub_level_pages[$i]['title']); ?></li>
287                                 <?php else: ?>
288                                         <li><a href="<?php echo $this->sub_level_pages[$i]['url']; ?>"><?php echo htmlentities_utf8($this->sub_level_pages[$i]['title']); ?></a></li>
289                                 <?php endif; ?>
290                                 <?php if ($i < $num_pages-1): 
291                                         echo " ";?>
292                                 <?php endif; ?>
293                         <?php endfor; ?>
294                         </ul>
295                 </div>
296         <?php endif; ?>
297
298 <!-- the main navigation. in our case, tabs -->