2 namespace TYPO3\CMS\Form\Controller
;
4 /***************************************************************
7 * (c) 2008-2013 Patrick Broens (patrick@patrickbroens.nl)
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.
19 * This script is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * This copyright notice MUST APPEAR in all copies of the script!
25 ***************************************************************/
28 * The form wizard controller
30 * @author Patrick Broens <patrick@patrickbroens.nl>
32 class WizardController
{
37 * Calls the requested action
41 public function dispatch() {
42 switch (\TYPO3\CMS\Core\Utility\GeneralUtility
::_GP('action')) {
57 * The action which should be taken when the wizard is loaded
61 protected function indexAction() {
62 /** @var $view \TYPO3\CMS\Form\View\Wizard\WizardView */
63 $view = \TYPO3\CMS\Core\Utility\GeneralUtility
::makeInstance('TYPO3\\CMS\\Form\\View\\Wizard\\WizardView', $this->getRepository());
70 * The action which should be taken when the form in the wizard is saved
74 protected function saveAction() {
75 /** @var $view \TYPO3\CMS\Form\View\Wizard\SaveWizardView */
76 $view = \TYPO3\CMS\Core\Utility\GeneralUtility
::makeInstance('TYPO3\\CMS\\Form\\View\\Wizard\\SaveWizardView', $this->getRepository());
83 * The action which should be taken when the form in the wizard is loaded
87 protected function loadAction() {
88 /** @var $view \TYPO3\CMS\Form\View\Wizard\LoadWizardView */
89 $view = \TYPO3\CMS\Core\Utility\GeneralUtility
::makeInstance('TYPO3\\CMS\\Form\\View\\Wizard\\LoadWizardView', $this->getRepository());
94 * Gets the repository object.
96 * @return \TYPO3\CMS\Form\Domain\Repository\ContentRepository
98 protected function getRepository() {
99 return \TYPO3\CMS\Core\Utility\GeneralUtility
::makeInstance('TYPO3\\CMS\\Form\\Domain\\Repository\\ContentRepository');