‪TYPO3CMS  ‪main
UnknownElement.php
Go to the documentation of this file.
1 <?php
2 
3 /*
4  * This file is part of the TYPO3 CMS project.
5  *
6  * It is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU General Public License, either version 2
8  * of the License, or any later version.
9  *
10  * For the full copyright and license information, please read the
11  * LICENSE.txt file that was distributed with this source code.
12  *
13  * The TYPO3 project - inspiring people to share!
14  */
15 
17 
22 {
28  public function ‪render(): array
29  {
30  $resultArray = $this->‪initializeResultArray();
31  $type = $this->data['parameterArray']['fieldConf']['config']['type'];
32  $renderType = $this->data['renderType'];
33  $resultArray['html'] = $this->‪wrapWithFieldsetAndLegend(
34  '<div class="alert alert-warning">Unknown type: <code>' . $type . '</code>' . ($renderType ? ', render type: <code>' . $renderType . '</code>' : '') . '</div>'
35  );
36  return $resultArray;
37  }
38 }
‪TYPO3\CMS\Backend\Form\Element\UnknownElement
Definition: UnknownElement.php:22
‪TYPO3\CMS\Backend\Form\Element\AbstractFormElement
Definition: AbstractFormElement.php:37
‪TYPO3\CMS\Backend\Form\Element
Definition: AbstractFormElement.php:16
‪TYPO3\CMS\Backend\Form\Element\AbstractFormElement\wrapWithFieldsetAndLegend
‪wrapWithFieldsetAndLegend(string $innerHTML)
Definition: AbstractFormElement.php:133
‪TYPO3\CMS\Backend\Form\Element\UnknownElement\render
‪array render()
Definition: UnknownElement.php:28
‪TYPO3\CMS\Backend\Form\AbstractNode\initializeResultArray
‪initializeResultArray()
Definition: AbstractNode.php:77