9c686fa22f99d467efd111559dd1b881a0c9794a
[atutor.git] / docs / themes / greenmin / 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:51Z 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->banner_style          -deprecated-
23  * $this->theme                         the directory name of the current theme
24  * $this->base_href                     the full url to this atutor installation
25  * $this->onload                        javascript onload() calls
26  * $this->img                           the absolute path to this theme's images/ directory
27  * $this->sequence_links        associative array of 'previous', 'next', and/or 'resume' links
28  * $this->path                          associative array of path to this page: aka bread crumbs
29  * $this->rel_url                       the relative url from the installation root to this page
30  * $this->nav_courses           associative array of this user's enrolled courses
31  * $this->section_title         the title of this section (course, public, admin, my start page)
32  * $this->top_level_pages       associative array of the top level navigation
33  * $this->current_top_level_page        the full path to the current top level page with file name
34  * $this->sub_level_pages                       associate array of sub level navigation
35  * $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)
36  * $this->current_sub_level_page        the full path to the current sub level page with file name
37  * $this->guide                         the full path and file name to the guide page
38  * ======================================
39  * top_level_pages           array(array('url', 'title'))     the top level pages. ATutor default creates tabs.
40  * section_title             string                           the name of the current section. either name of the course, administration, my start page, etc.
41  * page_title                string                           the title of the current page.
42  * path                      array(array('url', 'title'))     the path to the current page.
43  * back_to_page              array('url', 'title')            the link back to the part of the current page, if needed.
44  * current_top_level_page    string                           full url to the current top level page in "top_leve_pages"
45  * current_sub_level_page    string                           full url to the current sub level page in the "sub_level_pages"
46  * sub_level_pages           array(array('url', 'title'))     the sub level pages.
47  */
48
49 // will have to be moved to the header.inc.php
50 global $system_courses, $_custom_css, $_base_path;
51
52 ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
53
54 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="<?php echo $this->lang_code; ?>"> 
55
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 2005 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         <?php if ($system_courses[$this->course_id]['rss']): ?>
69         <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" />
70         <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" />
71         <?php endif; ?>
72         <script src="<?php echo $this->base_path; ?>jscripts/infusion/InfusionAll.js" type="text/javascript"></script>
73     <script language="javascript" type="text/javascript">
74     //<!--
75     jQuery.noConflict();
76     //-->
77     </script>
78     <script src="<?php echo $this->base_path; ?>jscripts/ATutor.js" type="text/javascript"></script>   
79     <?php echo $this->custom_css; ?>
80     <?php echo $this->rtl_css; ?>
81     <style id="pref_style" type="text/css"></style> 
82 </head>
83 <body onload="<?php echo $this->onload; ?>">
84
85 <!-- bypass links -->
86 <div class="bypass">
87     <a href="<?php echo htmlspecialchars($_SERVER['REQUEST_URI'], ENT_QUOTES); ?>#content" accesskey="c">
88     <img src="<?php echo $this->base_path; ?>images/clr.gif" height="1" width="1" border="0" alt="<?php echo _AT('goto_content'); ?> ALT+c" />
89     </a>                
90     <a href="<?php echo htmlspecialchars($_SERVER['REQUEST_URI'], ENT_QUOTES); ?>#menu"  accesskey="m">
91     <img src="<?php echo $this->base_path; ?>images/clr.gif" height="1" width="1" border="0" alt="<?php echo _AT('goto_menu'); ?> ALT+m" />
92     </a>
93 </div>
94
95
96 <!-- top help/search/login links -->
97 <div id="top-links">
98 <div id="top-links-jump">
99 <!-- back to start page -->
100         <?php if (isset($_SESSION['member_id']) && $_SESSION['member_id']): ?>
101                 <!-- start the jump menu -->
102                 <?php if (empty($_GET)): ?>
103                         <form method="post" action="<?php echo $this->base_path; ?>bounce.php?p=<?php echo urlencode($this->rel_url); ?>" target="_top">
104                 <?php else: ?>
105                         <form method="post" action="<?php echo $this->base_path; ?>bounce.php" target="_top">
106                 <?php endif; ?>
107                 <label for="jumpmenu" accesskey="j"></label>
108                         <select name="course" id="jumpmenu" title="<?php echo _AT('jump'); ?>:  Alt-j">                                                 
109                                 <option value="0"><?php echo _AT('my_start_page'); ?></option>
110                                 <optgroup label="<?php echo _AT('courses_below'); ?>">
111                                         <?php foreach ($this->nav_courses as $this_course_id => $this_course_title): ?>
112                                                 <option value="<?php echo $this_course_id; ?>"><?php echo $this_course_title; ?></option>
113                                         <?php endforeach; ?>
114                                 </optgroup>
115                         </select> <input type="submit" name="jump" value="<?php echo _AT('jump'); ?>" id="jump-button" /> &nbsp; </form>
116                 <!-- /end the jump menu -->
117                 <?php if ($_SESSION['is_super_admin']): ?>
118                         <img src="<?php echo $this->img; ?>linkTransparent.gif" alt="" /> <a href="<?php echo $this->base_path; ?>bounce.php?admin"><?php echo _AT('return_to_admin_area'); ?></a> | 
119                 <?php endif; ?>
120
121                 <?php if ($this->course_id > -1): ?>
122                         <?php if (get_num_new_messages()): ?>
123                                 <img src="<?php echo $this->img; ?>linkTransparent.gif" alt="" /> <a href="<?php echo $this->base_path; ?>inbox/index.php"><?php echo _AT('inbox'); ?> (<?php echo get_num_new_messages(); ?>)</a>
124                         <?php else: ?>
125                                 <img src="<?php echo $this->img; ?>linkTransparent.gif" alt="" /> <a href="<?php echo $this->base_path; ?>inbox/index.php"><?php echo _AT('inbox'); ?></a>
126                         <?php endif; ?>
127                 <?php endif; ?>
128         <?php endif; ?>
129
130         <img src="<?php echo $this->img; ?>linkTransparent.gif" alt="" /> <a href="<?php echo $this->base_path; ?>search.php"><?php echo _AT('search'); ?></a> <img src="<?php echo $this->img; ?>linkTransparent.gif" alt="" /> <a href="<?php echo $this->base_path; ?>help/index.php"><?php echo _AT('help'); ?></a>
131 </div>
132 </div>
133 <div>
134 <h1 id="section-title"><?php echo $this->section_title; ?>
135 <?php if (($this->course_id > 0) && ($_SESSION['enroll'] == AT_ENROLL_NO)) : ?>
136                 - <small><a href="<?php echo $this->base_path; ?>enroll.php?course=<?php echo $this->course_id; ?>"><?php echo _AT('enroll_me'); ?></a></small>
137 <?php endif; ?></h1>
138 </div>
139 <br />
140 <div id="topnavlistcontainer">
141 <!-- the main navigation. in our case, tabs -->
142         <ul id="topnavlist">
143                 <?php foreach ($this->top_level_pages as $page): ?>
144                         <?php ++$accesscounter; $accesscounter = ($accesscounter == 10 ? 0 : $accesscounter); ?>
145                         <?php $accesskey_text = ($accesscounter < 10 ? 'accesskey="'.$accesscounter.'"' : ''); ?>
146                         <?php $accesskey_title = ($accesscounter < 10 ? ' Alt+'.$accesscounter : ''); ?>
147                         <?php if ($page['url'] == $this->current_top_level_page): ?>
148                                 <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>
149                         <?php else: ?>
150                                 <li><a href="<?php echo $page['url']; ?>" <?php echo $accesskey_text; ?> title="<?php echo $page['title'] . $accesskey_title; ?>"><?php echo $page['title']; ?></a></li>
151                         <?php endif; ?>
152                         <?php $accesscounter = ($accesscounter == 0 ? 11 : $accesscounter); ?>
153                 <?php endforeach; ?>
154         </ul>
155 </div>
156 <!-- the sub navigation -->
157 <div id="logoutbar">
158 <?php     if (!admin_authenticate(AT_ADMIN_PRIV_ADMIN, AT_PRIV_RETURN) && $last_path_part != 'preferences.php') {?>
159                     <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> |
160                     <?php } ?> 
161         <?php if ($_SESSION['valid_user']): ?>                                  
162                 <strong><?php echo get_display_name($_SESSION['member_id']); ?></strong> &nbsp; <img src="<?php echo $this->img; ?>/linkOpaque.gif" alt="" /> <a href="<?php echo $this->base_path; ?>logout.php"><?php echo _AT('logout'); ?></a>
163         <?php else: ?>
164                  <img src="<?php echo $this->img; ?>/linkOpaque.gif" alt="" /> <a href="<?php echo $this->base_path; ?>login.php?course=<?php echo $this->course_id; ?>"><?php echo _AT('login'); ?></a> &nbsp; <img src="<?php echo $this->img; ?>/linkOpaque.gif" alt="" /> <a href="<?php echo $this->base_path; ?>registration.php"><?php echo _AT('register'); ?></a>
165         <?php endif; ?>
166
167 </div>
168
169 <?php if ($this->sub_level_pages): ?>
170         <div id="sub-navigation">
171                 <?php if (isset($this->back_to_page)): ?>
172                         <a href="<?php echo $this->back_to_page['url']; ?>" id="back-to"><?php echo _AT('back_to').' '.$this->back_to_page['title']; ?></a> | 
173                 <?php endif; ?>
174
175                 <?php $num_pages = count($this->sub_level_pages); ?>
176                 <?php for ($i=0; $i<$num_pages; $i++): ?>
177                         <?php if ($this->sub_level_pages[$i]['url'] == $this->current_sub_level_page): ?>
178                                 <strong><?php echo $this->sub_level_pages[$i]['title']; ?></strong>
179                         <?php else: ?>
180                                 <a href="<?php echo $this->sub_level_pages[$i]['url']; ?>"><?php echo $this->sub_level_pages[$i]['title']; ?></a>
181                         <?php endif; ?>
182                         <?php if ($i < $num_pages-1): ?>
183                                 |
184                         <?php endif; ?>
185                 <?php endfor; ?>
186         </div>
187 <?php else: ?>
188         <div id="sub-navigation">
189                 &nbsp;
190         </div>
191 <?php endif; ?>
192
193 <?php if ($_SESSION["prefs"]["PREF_SHOW_BREAD_CRUMBS"]) { ?>
194 <!-- the bread crumbs -->
195 <div id="breadcrumbs">
196         <?php foreach ($this->path as $page): ?>
197                 <a href="<?php echo $page['url']; ?>"><?php echo htmlspecialchars($page['title'], ENT_COMPAT, "UTF-8"); ?></a> > 
198         <?php endforeach; ?> <?php echo $this->page_title; ?>
199 </div>
200 <?php } ?>
201
202 <!-- Extra div tag for IE fix in dealing with position:absolute (used by side menu)-->
203 <div>
204
205 <div id="contentwrapper">
206     <?php if (isset($this->course_id) && $this->course_id > 0 && $system_courses[$this->course_id]['side_menu']): ?>
207         <div id="rightcolumn">
208             <a name="menu"></a>
209             <div id="side-menu">
210                 <?php require(AT_INCLUDE_PATH.'side_menu.inc.php'); ?>
211             </div>
212         </div>
213     <?php endif; ?>
214
215 <div id="contentcolumn">
216
217 <!-- the page title -->
218
219                 <?php if ($this->course_id > 0 && $system_courses[$this->course_id]['side_menu']): ?>
220         <div id="menutoggle">
221             <a accesskey="n"><img src="" title="" alt="" /></a>
222         </div>
223                 <?php endif; ?>
224
225         <div class="sequence-links">
226         <?php if ($_SESSION["prefs"]["PREF_SHOW_NEXT_PREVIOUS_BUTTONS"]) { ?>
227                 <?php if ($this->sequence_links['resume']): ?>
228                                 <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>
229                 <?php else:
230                         if ($this->sequence_links['previous']): ?>
231                                 <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>
232                         <?php endif;
233                         if ($this->sequence_links['next']): ?>
234                                 <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>
235                         <?php endif; ?>
236                 <?php endif; ?>
237         <?php } ?>
238                 &nbsp;
239         </div>
240
241                 <?php if ($this->guide && ($_SESSION["prefs"]["PREF_SHOW_GUIDE"] || $_SESSION["course_id"] == "-1")): ?>
242         <div id="guide_box">
243                         <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>
244         </div>
245                 <?php endif; ?>
246
247         <!-- the page title -->
248         <h2 class="page-title"><?php echo $this->page_title; ?></h2>
249
250 <a name="content"></a>
251 <?php global $msg; $msg->printAll(); ?>