⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 header.tmpl.php

📁 是一个教学内容管理系统
💻 PHP
字号:
<?php/************************************************************************//* ATutor																*//************************************************************************//* Copyright (c) 2002-2005 by Greg Gay, Joel Kronenberg & Heidi Hazelton*//* Adaptive Technology Resource Centre / University of Toronto			*//* http://atutor.ca														*//*																		*//* This program is free software. You can redistribute it and/or		*//* modify it under the terms of the GNU General Public License			*//* as published by the Free Software Foundation.						*//************************************************************************/// $Id: header.tmpl.php 3825 2005-03-11 15:35:51Z joel $if (!defined('AT_INCLUDE_PATH')) { exit; }/* available header.tmpl.php variables: * $this->lang_code			the ISO language code * SITE_NAME				the site name from the config file * $this->page_title		the name of this page to use in the <title> * $this->lang_charset		the ISO language character set * $this->content_base_href	the <base href> to use for this page * $this->base_path			the absolute path to this atutor installation * $this->rtl_css			if set, the path to the RTL style sheet * $this->banner_style		-deprecated- * $this->theme				the directory name of the current theme * $this->base_href			the full url to this atutor installation * $this->onload			javascript onload() calls * $this->img				the absolute path to this theme's images/ directory * $this->sequence_links	associative array of 'previous', 'next', and/or 'resume' links * $this->path				associative array of path to this page: aka bread crumbs * $this->rel_url			the relative url from the installation root to this page * $this->nav_courses		associative array of this user's enrolled courses * $this->section_title		the title of this section (course, public, admin, my start page) * $this->top_level_pages	associative array of the top level navigation * $this->current_top_level_page	the full path to the current top level page with file name * $this->sub_level_pages			associate array of sub level navigation * $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) * $this->current_sub_level_page	the full path to the current sub level page with file name * $this->guide				the full path and file name to the guide page * ====================================== * top_level_pages           array(array('url', 'title'))     the top level pages. ATutor default creates tabs. * section_title             string                           the name of the current section. either name of the course, administration, my start page, etc. * page_title                string                           the title of the current page. * path                      array(array('url', 'title'))     the path to the current page. * back_to_page              array('url', 'title')            the link back to the part of the current page, if needed. * current_top_level_page    string                           full url to the current top level page in "top_leve_pages" * current_sub_level_page    string                           full url to the current sub level page in the "sub_level_pages" * sub_level_pages           array(array('url', 'title'))     the sub level pages. */// will have to be moved to the header.inc.phpglobal $system_courses, $_custom_css;?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html lang="<?php echo $this->lang_code; ?>"><head>	<title><?php echo SITE_NAME; ?> : <?php echo $this->page_title; ?></title>	<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $this->lang_charset; ?>" />	<meta name="Generator" content="ATutor - Copyright 2005 by http://atutor.ca" />	<base href="<?php echo $this->content_base_href; ?>" />	<link rel="shortcut icon" href="<?php echo $this->base_path; ?>favicon.ico" type="image/x-icon" />	<link rel="stylesheet" href="<?php echo $this->base_path.'themes/'.$this->theme; ?>/print.css" type="text/css" media="print" />	<link rel="stylesheet" href="<?php echo $this->base_path.'themes/'.$this->theme; ?>/styles.css" type="text/css" />	<!--[if IE]>	  <link rel="stylesheet" href="<?php echo $this->base_path.'themes/'.$this->theme; ?>/ie_styles.css" type="text/css" />	<![endif]-->	<link rel="stylesheet" href="<?php echo $this->base_path.'themes/'.$this->theme; ?>/forms.css" type="text/css" />	<?php echo $this->rtl_css; ?>	<?php if ($system_courses[$_SESSION['course_id']]['rss']): ?>	<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 $_SESSION['course_id']; ?>-2" />	<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 $_SESSION['course_id']; ?>-1" />	<?php endif; ?>	<?php echo $this->custom_css; ?></head><body onload="<?php echo $this->onload; ?>"><div id="overDiv" style="position:absolute; visibility:hidden; z-index:1000;"></div><script language="JavaScript" src="<?php echo $this->base_path; ?>overlib.js" type="text/javascript"></script><script language="javascript" type="text/javascript">//<!--var newwindow;function poptastic(url) {	newwindow=window.open(url,'popup','height=600,width=600,scrollbars=yes,resizable=yes');	if (window.focus) {newwindow.focus()}}//--></script><!-- section title --><div><a href="<?php echo htmlspecialchars($_SERVER['REQUEST_URI'], ENT_QUOTES); ?>#content" accesskey="c"><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>		<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><h1 id="section-title"><?php echo $this->section_title; ?><?php if (($_SESSION['course_id'] > 0) && ($_SESSION['enroll'] == AT_ENROLL_NO)) : ?>		- <small><a href="<?php echo $this->base_path; ?>enroll.php?course=<?php echo $_SESSION['course_id']; ?>"><?php echo _AT('enroll_me'); ?></a></small>	<?php endif; ?></h1></div><!-- top help/search/login links --><div align="right" id="top-links"><!-- back to start page -->	<?php if (isset($_SESSION['member_id']) && $_SESSION['member_id']): ?>		<!-- start the jump menu -->		<?php if (empty($_GET)): ?>			<form method="post" action="<?php echo $this->base_path; ?>bounce.php?p=<?php echo urlencode($this->rel_url); ?>" target="_top">		<?php else: ?>			<form method="post" action="<?php echo $this->base_path; ?>bounce.php" target="_top">		<?php endif; ?>		<label for="jumpmenu" accesskey="j"></label>			<select name="course" id="jumpmenu" title="<?php echo _AT('jump'); ?>:  Alt-j">											<option value="0"><?php echo _AT('my_start_page'); ?></option>				<optgroup label="<?php echo _AT('courses_below'); ?>">					<?php foreach ($this->nav_courses as $this_course_id => $this_course_title): ?>						<option value="<?php echo $this_course_id; ?>"><?php echo $this_course_title; ?></option>					<?php endforeach; ?>				</optgroup>			</select> <input type="submit" name="jump" value="<?php echo _AT('jump'); ?>" id="jump-button" /> &nbsp; </form>		<!-- /end the jump menu -->		<?php if ($_SESSION['is_super_admin']): ?>			<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> | 		<?php endif; ?>		<?php if ($_SESSION['course_id'] > -1): ?>			<?php if (get_num_new_messages()): ?>				<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>			<?php else: ?>				<img src="<?php echo $this->img; ?>linkTransparent.gif" alt="" /> <a href="<?php echo $this->base_path; ?>inbox/index.php"><?php echo _AT('inbox'); ?></a>			<?php endif; ?>		<?php endif; ?>	<?php endif; ?>	<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></div><br /><div id="topnavlistcontainer"><!-- the main navigation. in our case, tabs -->	<ul id="topnavlist">		<?php foreach ($this->top_level_pages as $page): ?>			<?php ++$accesscounter; $accesscounter = ($accesscounter == 10 ? 0 : $accesscounter); ?>			<?php $accesskey_text = ($accesscounter < 10 ? 'accesskey="'.$accesscounter.'"' : ''); ?>			<?php $accesskey_title = ($accesscounter < 10 ? ' Alt+'.$accesscounter : ''); ?>			<?php if ($page['url'] == $this->current_top_level_page): ?>				<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>			<?php else: ?>				<li><a href="<?php echo $page['url']; ?>" <?php echo $accesskey_text; ?> title="<?php echo $page['title'] . $accesskey_title; ?>"><?php echo $page['title']; ?></a></li>			<?php endif; ?>			<?php $accesscounter = ($accesscounter == 0 ? 11 : $accesscounter); ?>		<?php endforeach; ?>	</ul></div><!-- the sub navigation --><div style="float: right; padding-top: 5px; padding-right: 5px; font-size:0.85em; text-transform: lowercase;" id="suv-nav-logout">	<?php if ($_SESSION['valid_user']): ?>							<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>	<?php else: ?>		 <img src="<?php echo $this->img; ?>/linkOpaque.gif" alt="" /> <a href="<?php echo $this->base_path; ?>login.php?course=<?php echo $_SESSION['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>	<?php endif; ?></div><?php if ($this->sub_level_pages): ?>	<div id="sub-navigation">		<?php if (isset($this->back_to_page)): ?>			<a href="<?php echo $this->back_to_page['url']; ?>" id="back-to"><?php echo _AT('back_to').' '.$this->back_to_page['title']; ?></a> | 		<?php endif; ?>		<?php $num_pages = count($this->sub_level_pages); ?>		<?php for ($i=0; $i<$num_pages; $i++): ?>			<?php if ($this->sub_level_pages[$i]['url'] == $this->current_sub_level_page): ?>				<strong><?php echo $this->sub_level_pages[$i]['title']; ?></strong>			<?php else: ?>				<a href="<?php echo $this->sub_level_pages[$i]['url']; ?>"><?php echo $this->sub_level_pages[$i]['title']; ?></a>			<?php endif; ?>			<?php if ($i < $num_pages-1): ?>				|			<?php endif; ?>		<?php endfor; ?>	</div><?php else: ?>	<div id="sub-navigation">		&nbsp;	</div><?php endif; ?><!-- the bread crumbs --><div id="breadcrumbs">	<?php foreach ($this->path as $page): ?>		<a href="<?php echo $page['url']; ?>"><?php echo $page['title']; ?></a> 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -