‪TYPO3CMS  ‪main
ModifyRecordOverlayIconIdentifierEvent.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 
24 {
25  public function ‪__construct(
26  private string $overlayIconIdentifier,
27  private readonly string $table,
28  private readonly array $row,
29  private readonly array $status,
30  ) {}
31 
32  public function ‪setOverlayIconIdentifier(string $overlayIconIdentifier): void
33  {
34  $this->overlayIconIdentifier = $overlayIconIdentifier;
35  }
36 
37  public function ‪getOverlayIconIdentifier(): string
38  {
39  return $this->overlayIconIdentifier;
40  }
41 
42  public function ‪getTable(): string
43  {
44  return $this->table;
45  }
46 
47  public function ‪getRow(): array
48  {
49  return $this->row;
50  }
51 
52  public function ‪getStatus(): array
53  {
54  return $this->status;
55  }
56 }
‪TYPO3\CMS\Core\Imaging\Event\ModifyRecordOverlayIconIdentifierEvent\getTable
‪getTable()
Definition: ModifyRecordOverlayIconIdentifierEvent.php:42
‪TYPO3\CMS\Core\Imaging\Event\ModifyRecordOverlayIconIdentifierEvent
Definition: ModifyRecordOverlayIconIdentifierEvent.php:24
‪TYPO3\CMS\Core\Imaging\Event\ModifyRecordOverlayIconIdentifierEvent\setOverlayIconIdentifier
‪setOverlayIconIdentifier(string $overlayIconIdentifier)
Definition: ModifyRecordOverlayIconIdentifierEvent.php:32
‪TYPO3\CMS\Core\Imaging\Event
Definition: ModifyIconForResourcePropertiesEvent.php:18
‪TYPO3\CMS\Core\Imaging\Event\ModifyRecordOverlayIconIdentifierEvent\getRow
‪getRow()
Definition: ModifyRecordOverlayIconIdentifierEvent.php:47
‪TYPO3\CMS\Core\Imaging\Event\ModifyRecordOverlayIconIdentifierEvent\getStatus
‪getStatus()
Definition: ModifyRecordOverlayIconIdentifierEvent.php:52
‪TYPO3\CMS\Core\Imaging\Event\ModifyRecordOverlayIconIdentifierEvent\__construct
‪__construct(private string $overlayIconIdentifier, private readonly string $table, private readonly array $row, private readonly array $status,)
Definition: ModifyRecordOverlayIconIdentifierEvent.php:25
‪TYPO3\CMS\Core\Imaging\Event\ModifyRecordOverlayIconIdentifierEvent\getOverlayIconIdentifier
‪getOverlayIconIdentifier()
Definition: ModifyRecordOverlayIconIdentifierEvent.php:37