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

📄 pagegen.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!***************************************************************//** * Generating the TypoScript based page. * Must be included from index_ts.php * * $Id: pagegen.php 593 2005-04-01 14:37:15Z typo3 $ * Revised for TYPO3 3.6 June/2003 by Kasper Skaarhoj * * @author	Kasper Skaarhoj <kasperYYYY@typo3.com> * @package TYPO3 * @subpackage tslib */if (!is_object($TSFE))	{die('You cannot execute this file directly. It\'s meant to be included from index_ts.php');}$TT->push('pagegen.php, initialize');// *********************************// Initialization of some variables// *********************************TSpagegen::pagegenInit();// *************************// Global content object...// *************************$GLOBALS['TSFE']->newCObj();// ******************************// LIBRARY INCLUSION, TypoScript// ******************************$temp_incFiles=TSpagegen::getIncFiles();reset($temp_incFiles);while(list(,$temp_file)=each($temp_incFiles))	{	include_once('./'.$temp_file);}$TT->pull();// *******************// Content generation// *******************// If this is an array, it's a sign that this script is included in order to include certain PHP_SCRIPT_INT-scriptsif (!$GLOBALS['TSFE']->isINTincScript())		{	$TT->push('pagegen.php, render');	TSpagegen::renderContent();	$GLOBALS['TSFE']->setAbsRefPrefix();	$TT->pull();}?>

⌨️ 快捷键说明

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