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

📄 header.tmpl.php

📁 是一个教学内容管理系统
💻 PHP
📖 第 1 页 / 共 2 页
字号:
<?phpif (!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 2007 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_path; ?>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_path; ?>get_rss.php?<?php echo $_SESSION['course_id']; ?>-1" />	<?php endif; ?>	<?php echo $this->custom_css; ?></head><body onload="setstates(); <?php echo $this->onload; ?>"><div id="overDiv" style="position:absolute; visibility:hidden; z-index:1000; <?php if ($this->rtl_css): ?>direction:rtl;<?php endif; ?>"></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=700,width=700,scrollbars=yes,resizable=yes');	if (window.focus) {newwindow.focus()}}function getexpirydate(nodays){	var UTCstring;	Today = new Date();	nomilli=Date.parse(Today);	Today.setTime(nomilli+nodays*24*60*60*1000);	UTCstring = Today.toUTCString();	return UTCstring;}function setcookie(name,value,duration){	cookiestring=name+"="+escape(value)+";path=/;expires="+getexpirydate(duration);	document.cookie=cookiestring;	if(!getcookie(name)){		return false;	} else {		return true;	}}function getcookie(cookiename) {	var cookiestring=""+document.cookie;	var index1=cookiestring.indexOf(cookiename);	if (index1==-1 || cookiename=="") return ""; 	var index2=cookiestring.indexOf(';',index1);	if (index2==-1) index2=cookiestring.length; 	return unescape(cookiestring.substring(index1+cookiename.length+1,index2));}function setDisplay(objId) {	var toc = document.getElementById(objId);	var state = getcookie(objId);	if (document.getElementById(objId) && state && (state == 'none')) {		toggleToc(objId);	}}function setstates() {	return;	var objId = "side-menu";	var state = getcookie(objId);	if (document.getElementById(objId) && state && (state == 'none')) {		toggleToc(objId);	}	var objId = "toccontent";	var state = getcookie(objId);	if (document.getElementById(objId) && state && (state == 'none')) {		toggleToc(objId);	}	return true;}function showTocToggle(objId, show, hide, key, selected) {	if(document.getElementById) {		if (key) {			var accesskey = " accesskey='" + key + "' title='"+ show + "/" + hide + " Alt+"+ key +"'";		} else {			var accesskey = "";		}		if (selected == 'hide') {			document.writeln('<a href="javascript:toggleToc(\'' + objId + '\')" ' + accesskey + '>' +			'<span id="' + objId + 'showlink" style="display:none;">' + show + '</span>' +			'<span id="' + objId + 'hidelink">' + hide + '</span>'	+ '</a>');		} else {			document.writeln('<a href="javascript:toggleToc(\'' + objId + '\')" ' + accesskey + '>' +			'<span id="' + objId + 'showlink">' + show + '</span>' +			'<span id="' + objId + 'hidelink" style="display:none;">' + hide + '</span>'	+ '</a>');		}	}}function toggleToc(objId) {	var toc = document.getElementById(objId);	if (toc == null) {		return;	}	var showlink=document.getElementById(objId + 'showlink');	var hidelink=document.getElementById(objId + 'hidelink');	if (hidelink.style.display == 'none') {		toc.style.display = '';		hidelink.style.display='';		showlink.style.display='none';	} else {		toc.style.display = 'none';		hidelink.style.display='none';		showlink.style.display='';	}	setcookie(objId, toc.style.display, 1);}//--></script>

⌨️ 快捷键说明

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