/***************************************************************
* Copyright notice
*
-* (c) 1999-2008 Kasper Skaarhoj (kasperYYYY@typo3.com)
+* (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
* 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 Skaarhoj
+ * Revised for TYPO3 3.6 2/2003 by Kasper Skårhøj
* XHTML compliant
*
- * @author Kasper Skaarhoj <kasperYYYY@typo3.com>
+ * @author Kasper Skårhøj <kasperYYYY@typo3.com>
*/
/**
* [CLASS/FUNCTION INDEX of SCRIPT]
require ('init.php');
require ('template.php');
-require_once (PATH_t3lib.'class.t3lib_loadmodules.php');
-require_once (PATH_t3lib.'class.t3lib_basicfilefunc.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 Skaarhoj <kasperYYYY@typo3.com>
+ * @author Kasper Skårhøj <kasperYYYY@typo3.com>
* @package TYPO3
* @subpackage core
*/
* @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.= $TBE_TEMPLATE->startPage('About modules');
+ $TBE_TEMPLATE->divClass = $GLOBALS['TBE_TEMPLATE']->bodyTagId;
- $this->content .= '
- <h1>TYPO3 '.TYPO3_version.'<br />'.$LANG->getLL('introtext').'</h1>
+ $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 />' . $GLOBALS['LANG']->getLL('introtext') . '</h1>
<p>'.t3lib_BEfunc::TYPO3_copyRightNotice().'</p>';
'.t3lib_BEfunc::displayWarningMessages();
$this->content .= '
- <p>'.$LANG->getLL('introtext2').'</p>';
+ <h3>' . $GLOBALS['LANG']->getLL('introtext2') . '</h3>';
// Printing the description of the modules available
$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.='<hr />';
-
- // Logged in user, eg: 'You're logged in as user: admin (John Doe, john@doe.email)'
- $this->content.='<p class="c-user">'.
- htmlspecialchars($LANG->getLL('userInfo')).
- sprintf(' <strong>%s</strong> (%s)',
- $BE_USER->user['username'],
- (implode(', ',array($BE_USER->user['realName'],$BE_USER->user['email'])))
- ).
- '</p>
- <br />
- <br />';
-
- // End page
- $this->content.= $TBE_TEMPLATE->endPage();
+ $this->content .= '<p class="c-features"><em>(' . $GLOBALS['LANG']->getLL('endText') . ')</em></p>';
+ $this->content .= '<br /></div>';
+
+ // Renders the module page
+ $this->content = $TBE_TEMPLATE->render(
+ 'About modules',
+ $this->content
+ );
}
/**
}
-if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['typo3/alt_intro.php']) {
- include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['typo3/alt_intro.php']);
+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']);
}