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

📄 index.php

📁 Typo3, 开源里边最强大的
💻 PHP
字号:
<?php/****************************************************************  Copyright notice**  (c) 1999-2005 Kasper Skaarhoj (kasperYYYY@typo3.com)*  All rights reserved**  This script is part of the TYPO3 project. The TYPO3 project 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; either version 2 of the License, or*  (at your option) any later version.**  The GNU General Public License can be found at*  http://www.gnu.org/copyleft/gpl.html.*  A copy is found in the textfile GPL.txt and important notices to the license*  from the author is found in LICENSE.txt distributed with these scripts.***  This script is distributed in the hope that it will be useful,*  but WITHOUT ANY WARRANTY; without even the implied warranty of*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the*  GNU General Public License for more details.**  This copyright notice MUST APPEAR in all copies of the script!***************************************************************//** * Module: View * * Views the webpage * * @author	Kasper Sk錼h鴍 <kasperYYYY@typo3.com> *//** * [CLASS/FUNCTION INDEX of SCRIPT] * * * *   65: class SC_mod_web_view_index *   83:     function init() *  101:     function main() *  127:     function printContent() * * TOTAL FUNCTIONS: 3 * (This index is automatically created/updated by the extension "extdeveval") * */unset($MCONF);require ('conf.php');require ($BACK_PATH.'init.php');//require ($BACK_PATH.'template.php');require_once (PATH_t3lib.'class.t3lib_page.php');$BE_USER->modAccess($MCONF,1);/** * Script Class for the Web > View * * @author	Kasper Skaarhoj <kasperYYYY@typo3.com> * @package TYPO3 * @subpackage core */class SC_mod_web_view_index {	var $MCONF=array();	var $MOD_MENU=array();	var $MOD_SETTINGS=array();	var $perms_clause;	var $modTSconfig;	var $type;	var $pageinfo;	var $url;	var $id;	var $wsInstruction='';	/**	 * Initialization of module	 *	 * @return	void	 */	function init()	{		global $BE_USER;		$this->MCONF = $GLOBALS['MCONF'];		$this->id = intval(t3lib_div::_GP('id'));		$this->perms_clause = $BE_USER->getPagePermsClause(1);			// page/be_user TSconfig settings and blinding of menu-items		$this->modTSconfig = t3lib_BEfunc::getModTSconfig($this->id,'mod.'.$this->MCONF['name']);		$this->type = intval($this->modTSconfig['properties']['type']);	}	/**	 * Main function	 *	 * @return	void	 */	function main()	{		global $BE_USER,$LANG,$BACK_PATH,$TCA_DESCR,$TCA,$CLIENT,$TYPO3_CONF_VARS;			// Access check...			// The page will show only if there is a valid page and if this page may be viewed by the user		$this->pageinfo = t3lib_BEfunc::readPageAccess($this->id,$this->perms_clause);		$access = is_array($this->pageinfo) ? 1 : 0;		$addCmd='';		if ($this->id && $access)	{			$addCmd = '&ADMCMD_view=1&ADMCMD_editIcons=1'.t3lib_BEfunc::ADMCMD_previewCmds($this->pageinfo);		}		$parts = parse_url(t3lib_div::getIndpEnv('TYPO3_SITE_URL'));		$dName = t3lib_BEfunc::getDomainStartPage($parts['host'],$parts['path']) ?						t3lib_BEfunc::firstDomainRecord(t3lib_BEfunc::BEgetRootLine($this->id)):						'';		$this->url.= ($dName?(t3lib_div::getIndpEnv('TYPO3_SSL') ? 'https://' : 'http://').$dName:$BACK_PATH.'..').'/index.php?id='.$this->id.($this->type?'&type='.$this->type:'').$addCmd;		//debug($this->url);	}	/**	 * Redirect URL	 *	 * @return	void	 */	function printContent()	{		Header('Location: '.t3lib_div::locationHeaderUrl($this->url));	}}// Include extension?if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['ext/viewpage/view/index.php'])	{	include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['ext/viewpage/view/index.php']);}// Make instance:$SOBE = t3lib_div::makeInstance('SC_mod_web_view_index');$SOBE->init();$SOBE->main();$SOBE->printContent();?>

⌨️ 快捷键说明

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