2 /***************************************************************
5 * (c) 1999-2009 Kasper Skårhøj (kasperYYYY@typo3.com)
8 * This script is part of the TYPO3 project. The TYPO3 project is
9 * free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * The GNU General Public License can be found at
15 * http://www.gnu.org/copyleft/gpl.html.
16 * A copy is found in the textfile GPL.txt and important notices to the license
17 * from the author is found in LICENSE.txt distributed with these scripts.
20 * This script is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * This copyright notice MUST APPEAR in all copies of the script!
26 ***************************************************************/
28 * Class for generation of the module menu.
29 * Will make the vertical, horizontal, selectorbox based menus AND the "about modules" display.
30 * Basically it traverses the module structure and generates output based on that.
32 * Revised for TYPO3 3.6 2/2003 by Kasper Skårhøj
33 * XHTML compliant content
35 * @author Kasper Skårhøj <kasperYYYY@typo3.com>
36 * @deprecated since TYPO3 4.6, this file will be removed in TYPO3 4.8.
37 * The TYPO3 backend is using typo3/backend.php with less frames,
38 * which makes this file obsolete.
41 t3lib_div::deprecationLog('alt_menu_functions.inc is deprecated since TYPO3 4.6, this file will be removed in TYPO3 4.8. The TYPO3 backend is using typo3/backend.php with less frames, which makes this file obsolete.');
44 * Outdated class with menu functions
46 * This is kept as compatibility layer in case it's XCLASSed by any extension.
47 * Successor: tx_aboutmodules_Functions
49 * @author Kasper Skårhøj <kasperYYYY@typo3.com>
52 * @deprecated since 4.6, well be removed in 4.8
53 * @see tx_aboutmodules_Functions
55 class alt_menu_functions extends tx_aboutmodules_Functions {
58 if (defined('TYPO3_MODE') && isset($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['typo3/class.alt_menu_functions.inc'])) {
59 include_once($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['typo3/class.alt_menu_functions.inc']);