2 namespace TYPO3\CMS\FuncWizards\Controller
;
4 /***************************************************************
7 * (c) 1999-2011 Kasper Skårhøj (kasperYYYY@typo3.com)
10 * This script is part of the TYPO3 project. The TYPO3 project is
11 * free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * The GNU General Public License can be found at
17 * http://www.gnu.org/copyleft/gpl.html.
18 * A copy is found in the textfile GPL.txt and important notices to the license
19 * from the author is found in LICENSE.txt distributed with these scripts.
22 * This script is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
27 * This copyright notice MUST APPEAR in all copies of the script!
28 ***************************************************************/
30 * Contains a class for the Wizard function in the Web>Info module
32 * Revised for TYPO3 3.6 July/2003 by Kasper Skårhøj
35 * @author Kasper Skårhøj <kasperYYYY@typo3.com>
38 * The Wizard function in the Web>Info module
39 * Creates a framework for adding wizard sub-sub-modules under the Wizard function in Web>Info
41 * @author Kasper Skårhøj <kasperYYYY@typo3.com>
43 class WebFunctionWizardsBaseController
extends \TYPO3\CMS\Backend\Module\AbstractFunctionModule
{
46 * @todo Define visibility
48 public $function_key = 'wiz';
52 * Calls parent init function and then the handleExternalFunctionValue() function from the parent class
54 * @param object $pObj A reference to the parent (calling) object (which is probably an instance of an extension class to t3lib_SCbase)
55 * @param array $conf The configuration set for this module - from global array TBE_MODULES_EXT
57 * @see t3lib_extobjbase::handleExternalFunctionValue(), t3lib_extobjbase::init()
58 * @todo Define visibility
60 public function init(&$pObj, $conf) {
61 // OK, handles ordinary init. This includes setting up the menu array with ->modMenu
62 parent
::init($pObj, $conf);
63 // Making sure that any further external classes are added to the include_once array. Notice that inclusion happens twice in the main script because of this!!!
64 $this->handleExternalFunctionValue();
68 * Modifies parent objects internal MOD_MENU array, adding items this module needs.
70 * @return array Items merged with the parent objects.
71 * @see t3lib_extobjbase::init()
72 * @todo Define visibility
74 public function modMenu() {
77 $this->function_key
=> array()
79 $modMenuAdd[$this->function_key
] = $this->pObj
->mergeExternalItems($this->pObj
->MCONF
['name'], $this->function_key
, $modMenuAdd[$this->function_key
]);
80 $modMenuAdd[$this->function_key
] = \TYPO3\CMS\Backend\Utility\BackendUtility
::unsetMenuItems($this->pObj
->modTSconfig
['properties'], $modMenuAdd[$this->function_key
], 'menu.' . $this->function_key
);
85 * Creation of the main content. Calling extObjContent() to trigger content generation from the sub-sub modules
87 * @return string The content
88 * @see t3lib_extobjbase::extObjContent()
89 * @todo Define visibility
91 public function main() {
93 $menu = $LANG->getLL('wiz_lWizards', 1) . ': ' . \TYPO3\CMS\Backend\Utility\BackendUtility
::getFuncMenu($this->pObj
->id
, 'SET[wiz]', $this->pObj
->MOD_SETTINGS
['wiz'], $this->pObj
->MOD_MENU
['wiz']);
94 $theOutput .= $this->pObj
->doc
->section('', '<span class="nobr">' . $menu . '</span>');
96 $content .= $theOutput;
97 $content .= $this->pObj
->doc
->spacer(20);
98 $content .= $this->extObjContent();