‪TYPO3CMS  ‪main
Page.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
5 /*
6  * This file is part of the TYPO3 CMS project.
7  *
8  * It is free software; you can redistribute it and/or modify it under
9  * the terms of the GNU General Public License, either version 2
10  * of the License, or any later version.
11  *
12  * For the full copyright and license information, please read the
13  * LICENSE.txt file that was distributed with this source code.
14  *
15  * The TYPO3 project - inspiring people to share!
16  */
17 
18 /*
19  * Inspired by and partially taken from the Neos.Form package (www.neos.io)
20  */
21 
23 
26 use ‪TYPO3\CMS\Form\Exception as FormException;
27 
44 {
52  public function ‪__construct(string ‪$identifier, string ‪$type = 'Page')
53  {
54  parent::__construct(‪$identifier, ‪$type);
55  }
56 
63  {
64  if (!(‪$parentRenderable instanceof ‪FormDefinition)) {
65  throw new FormException(sprintf('The specified parentRenderable must be a FormDefinition, got "%s"', get_debug_type(‪$parentRenderable)), 1329233747);
66  }
67  parent::setParentRenderable(‪$parentRenderable);
68  }
69 }
‪TYPO3\CMS\Form\Domain\Model\Renderable\AbstractRenderable\$type
‪string $type
Definition: AbstractRenderable.php:49
‪TYPO3\CMS\Form\Domain\Model\FormElements\Page
Definition: Page.php:44
‪TYPO3\CMS\Form\Exception
Definition: Exception.php:25
‪TYPO3\CMS\Form\Domain\Model\FormElements\AbstractSection
Definition: AbstractSection.php:43
‪TYPO3\CMS\Form\Domain\Model\FormElements\Page\__construct
‪__construct(string $identifier, string $type='Page')
Definition: Page.php:52
‪TYPO3\CMS\Form\Domain\Model\Renderable\AbstractRenderable\$parentRenderable
‪CompositeRenderableInterface null $parentRenderable
Definition: AbstractRenderable.php:61
‪TYPO3\CMS\Form\Domain\Model\FormDefinition
Definition: FormDefinition.php:224
‪TYPO3\CMS\Form\Domain\Model\Renderable\AbstractRenderable\$identifier
‪string $identifier
Definition: AbstractRenderable.php:55
‪TYPO3\CMS\Form\Domain\Model\Renderable\CompositeRenderableInterface
Definition: CompositeRenderableInterface.php:32
‪TYPO3\CMS\Form\Domain\Model\FormElements\Page\setParentRenderable
‪setParentRenderable(CompositeRenderableInterface $parentRenderable)
Definition: Page.php:62
‪TYPO3\CMS\Form\Domain\Model\FormElements
Definition: AbstractFormElement.php:22