‪TYPO3CMS  ‪main
AbstractSectionMarkupGeneratedEvent.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 
19 
20 use Psr\EventDispatcher\StoppableEventInterface;
22 
23 abstract class ‪AbstractSectionMarkupGeneratedEvent implements StoppableEventInterface
24 {
25  private array ‪$columnConfig;
27  private array ‪$records;
28 
29  private string ‪$content = '';
30  private bool ‪$stopRendering = false;
31 
33  {
34  $this->columnConfig = ‪$columnConfig;
35  $this->pageLayoutContext = ‪$pageLayoutContext;
36  $this->records = ‪$records;
37  }
38 
39  public function ‪getColumnConfig(): array
40  {
42  }
43 
45  {
47  }
48 
49  public function ‪getRecords(): array
50  {
51  return ‪$this->records;
52  }
53 
54  public function ‪setContent(string ‪$content = ''): void
55  {
56  $this->content = ‪$content;
57  }
58 
59  public function ‪getContent(): string
60  {
61  return ‪$this->content;
62  }
63 
67  public function ‪isPropagationStopped(): bool
68  {
70  }
71 
72  public function ‪setStopRendering(bool ‪$stopRendering): void
73  {
74  $this->stopRendering = ‪$stopRendering;
75  }
76 }
‪TYPO3\CMS\Backend\View\Event\AbstractSectionMarkupGeneratedEvent\getContent
‪getContent()
Definition: AbstractSectionMarkupGeneratedEvent.php:59
‪TYPO3\CMS\Backend\View\Event\AbstractSectionMarkupGeneratedEvent\$records
‪array $records
Definition: AbstractSectionMarkupGeneratedEvent.php:27
‪TYPO3\CMS\Backend\View\Event\AbstractSectionMarkupGeneratedEvent\$stopRendering
‪bool $stopRendering
Definition: AbstractSectionMarkupGeneratedEvent.php:30
‪TYPO3\CMS\Backend\View\Event
Definition: AbstractSectionMarkupGeneratedEvent.php:18
‪TYPO3\CMS\Backend\View\Event\AbstractSectionMarkupGeneratedEvent\$pageLayoutContext
‪PageLayoutContext $pageLayoutContext
Definition: AbstractSectionMarkupGeneratedEvent.php:26
‪TYPO3\CMS\Backend\View\Event\AbstractSectionMarkupGeneratedEvent\setStopRendering
‪setStopRendering(bool $stopRendering)
Definition: AbstractSectionMarkupGeneratedEvent.php:72
‪TYPO3\CMS\Backend\View\Event\AbstractSectionMarkupGeneratedEvent\getColumnConfig
‪getColumnConfig()
Definition: AbstractSectionMarkupGeneratedEvent.php:39
‪TYPO3\CMS\Backend\View\Event\AbstractSectionMarkupGeneratedEvent\getRecords
‪getRecords()
Definition: AbstractSectionMarkupGeneratedEvent.php:49
‪TYPO3\CMS\Backend\View\Event\AbstractSectionMarkupGeneratedEvent\$columnConfig
‪array $columnConfig
Definition: AbstractSectionMarkupGeneratedEvent.php:25
‪TYPO3\CMS\Backend\View\PageLayoutContext
Definition: PageLayoutContext.php:42
‪TYPO3\CMS\Backend\View\Event\AbstractSectionMarkupGeneratedEvent\$content
‪string $content
Definition: AbstractSectionMarkupGeneratedEvent.php:29
‪TYPO3\CMS\Backend\View\Event\AbstractSectionMarkupGeneratedEvent\setContent
‪setContent(string $content='')
Definition: AbstractSectionMarkupGeneratedEvent.php:54
‪TYPO3\CMS\Backend\View\Event\AbstractSectionMarkupGeneratedEvent\__construct
‪__construct(array $columnConfig, PageLayoutContext $pageLayoutContext, array $records)
Definition: AbstractSectionMarkupGeneratedEvent.php:32
‪TYPO3\CMS\Backend\View\Event\AbstractSectionMarkupGeneratedEvent\getPageLayoutContext
‪getPageLayoutContext()
Definition: AbstractSectionMarkupGeneratedEvent.php:44
‪TYPO3\CMS\Backend\View\Event\AbstractSectionMarkupGeneratedEvent
Definition: AbstractSectionMarkupGeneratedEvent.php:24
‪TYPO3\CMS\Backend\View\Event\AbstractSectionMarkupGeneratedEvent\isPropagationStopped
‪isPropagationStopped()
Definition: AbstractSectionMarkupGeneratedEvent.php:67