‪TYPO3CMS  10.4
AfterCompiledCacheableDataForWorkspaceEvent.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 
21 
26 {
30  private ‪$gridService;
31 
35  private ‪$data;
36 
40  private ‪$versions;
41 
43  {
44  $this->gridService = ‪$gridService;
45  $this->data = ‪$data;
46  $this->versions = ‪$versions;
47  }
48 
49  public function ‪getGridService(): ‪GridDataService
50  {
52  }
53 
54  public function ‪getData(): array
55  {
57  }
58 
59  public function ‪setData(array ‪$data): void
60  {
61  $this->data = ‪$data;
62  }
63 
64  public function ‪getVersions(): array
65  {
67  }
68 
69  public function ‪setVersions(array ‪$versions): void
70  {
71  $this->versions = ‪$versions;
72  }
73 }
‪TYPO3\CMS\Workspaces\Event\AfterCompiledCacheableDataForWorkspaceEvent\getGridService
‪getGridService()
Definition: AfterCompiledCacheableDataForWorkspaceEvent.php:46
‪TYPO3\CMS\Workspaces\Event\AfterCompiledCacheableDataForWorkspaceEvent\setData
‪setData(array $data)
Definition: AfterCompiledCacheableDataForWorkspaceEvent.php:56
‪TYPO3\CMS\Workspaces\Event\AfterCompiledCacheableDataForWorkspaceEvent\setVersions
‪setVersions(array $versions)
Definition: AfterCompiledCacheableDataForWorkspaceEvent.php:66
‪TYPO3\CMS\Workspaces\Event\AfterCompiledCacheableDataForWorkspaceEvent\$gridService
‪GridDataService $gridService
Definition: AfterCompiledCacheableDataForWorkspaceEvent.php:29
‪TYPO3\CMS\Workspaces\Event\AfterCompiledCacheableDataForWorkspaceEvent\__construct
‪__construct(GridDataService $gridService, array $data, array $versions)
Definition: AfterCompiledCacheableDataForWorkspaceEvent.php:39
‪TYPO3\CMS\Workspaces\Event\AfterCompiledCacheableDataForWorkspaceEvent\$data
‪array $data
Definition: AfterCompiledCacheableDataForWorkspaceEvent.php:33
‪TYPO3\CMS\Workspaces\Event\AfterCompiledCacheableDataForWorkspaceEvent\$versions
‪array $versions
Definition: AfterCompiledCacheableDataForWorkspaceEvent.php:37
‪TYPO3\CMS\Workspaces\Event\AfterCompiledCacheableDataForWorkspaceEvent
Definition: AfterCompiledCacheableDataForWorkspaceEvent.php:26
‪TYPO3\CMS\Workspaces\Event
Definition: AfterCompiledCacheableDataForWorkspaceEvent.php:18
‪TYPO3\CMS\Workspaces\Event\AfterCompiledCacheableDataForWorkspaceEvent\getData
‪getData()
Definition: AfterCompiledCacheableDataForWorkspaceEvent.php:51
‪TYPO3\CMS\Workspaces\Event\AfterCompiledCacheableDataForWorkspaceEvent\getVersions
‪getVersions()
Definition: AfterCompiledCacheableDataForWorkspaceEvent.php:61
‪TYPO3\CMS\Workspaces\Service\GridDataService
Definition: GridDataService.php:42