0byt3m1n1
Path:
/
data
/
applications
/
aps
/
typo3
/
4.5.5-0
/
standard
/
htdocs
/
typo3
/
[
Home
]
File: alt_intro.php
<?php /*************************************************************** * Copyright notice * * (c) 1999-2011 Kasper Skårhøj (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! ***************************************************************/ /** * 'About modules' script - the default start-up module. * Will display the list of main- and sub-modules available to the user. * Each module will be show with description and a link to the module. * * $Id$ * Revised for TYPO3 3.6 2/2003 by Kasper Skårhøj * XHTML compliant * * @author Kasper Skårhøj <kasperYYYY@typo3.com> */ /** * [CLASS/FUNCTION INDEX of SCRIPT] * * * * 75: class SC_alt_intro * 84: function init() * 98: function main() * 148: function printContent() * * TOTAL FUNCTIONS: 3 * (This index is automatically created/updated by the extension "extdeveval") * */ require ('init.php'); require ('template.php'); require_once ('class.alt_menu_functions.inc'); $LANG->includeLLFile('EXT:lang/locallang_alt_intro.xml'); /** * Script Class for the introduction screen, alias "About > Modules" which shows the description of each available module for the user. * * @author Kasper Skårhøj <kasperYYYY@typo3.com> * @package TYPO3 * @subpackage core */ class SC_alt_intro { /** * Object for backend modules. * * @var t3lib_loadModules */ var $loadModules; var $content; /** * Initialization of script class * * @return void */ function init() { global $TBE_MODULES; // Loads the available backend modules so we can create the description overview. $this->loadModules = t3lib_div::makeInstance('t3lib_loadModules'); $this->loadModules->observeWorkspaces = TRUE; $this->loadModules->load($TBE_MODULES); } /** * Main content - displaying the module descriptions * * @return void */ function main() { global $BE_USER,$LANG,$TYPO3_CONF_VARS; global $TBE_TEMPLATE; $alt_menuObj = t3lib_div::makeInstance('alt_menu_functions'); $TBE_TEMPLATE->divClass = $TBE_TEMPLATE->bodyTagId; $this->content = ' <div id="typo3-docheader"> <div id="typo3-docheader-row1"> </div> </div> <div id="typo3-alt-intro-php-sub"> <h1>TYPO3 '.TYPO3_version.'<br />'.$LANG->getLL('introtext').'</h1> <p>'.t3lib_BEfunc::TYPO3_copyRightNotice().'</p>'; $this->content .= ' '.t3lib_BEfunc::displayWarningMessages(); $this->content .= ' <h3>' . $LANG->getLL('introtext2') . '</h3>'; // Printing the description of the modules available $this->content.=$alt_menuObj->topMenu($this->loadModules->modules,0,'',1); $this->content.='<br />'; // end text: 'Features may vary depending on your website and permissions' $this->content.='<p class="c-features"><em>('.$LANG->getLL('endText').')</em></p>'; $this->content .= '<br /></div>'; // Renders the module page $this->content = $TBE_TEMPLATE->render( 'About modules', $this->content ); } /** * Outputting the accumulated content to screen * * @return void */ function printContent() { echo $this->content; } } if (defined('TYPO3_MODE') && isset($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['typo3/alt_intro.php'])) { include_once($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['typo3/alt_intro.php']); } // Make instance: $SOBE = t3lib_div::makeInstance('SC_alt_intro'); $SOBE->init(); $SOBE->main(); $SOBE->printContent(); ?>