‪TYPO3CMS  10.4
AfterExtensionSiteFilesHaveBeenImportedEvent.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 {
30  private ‪$packageKey;
31 
41  private ‪$siteIdentifierList;
42 
43  public function ‪__construct(string ‪$packageKey, array $newSiteIdentifierList)
44  {
45  $this->packageKey = ‪$packageKey;
46  $this->siteIdentifierList = $newSiteIdentifierList;
47  }
48 
49  public function ‪getPackageKey(): string
50  {
51  return ‪$this->packageKey;
52  }
53 
57  public function ‪getSiteIdentifierList(): array
58  {
60  }
61 }
‪TYPO3\CMS\Extensionmanager\Event\AfterExtensionSiteFilesHaveBeenImportedEvent\$siteIdentifierList
‪$siteIdentifierList
Definition: AfterExtensionSiteFilesHaveBeenImportedEvent.php:40
‪TYPO3\CMS\Extensionmanager\Event
Definition: AfterExtensionDatabaseContentHasBeenImportedEvent.php:18
‪TYPO3\CMS\Extensionmanager\Event\AfterExtensionSiteFilesHaveBeenImportedEvent\getSiteIdentifierList
‪array getSiteIdentifierList()
Definition: AfterExtensionSiteFilesHaveBeenImportedEvent.php:56
‪TYPO3\CMS\Extensionmanager\Event\AfterExtensionSiteFilesHaveBeenImportedEvent
Definition: AfterExtensionSiteFilesHaveBeenImportedEvent.php:24
‪TYPO3\CMS\Extensionmanager\Event\AfterExtensionSiteFilesHaveBeenImportedEvent\__construct
‪__construct(string $packageKey, array $newSiteIdentifierList)
Definition: AfterExtensionSiteFilesHaveBeenImportedEvent.php:42
‪TYPO3\CMS\Extensionmanager\Event\AfterExtensionSiteFilesHaveBeenImportedEvent\getPackageKey
‪getPackageKey()
Definition: AfterExtensionSiteFilesHaveBeenImportedEvent.php:48
‪TYPO3\CMS\Extensionmanager\Event\AfterExtensionSiteFilesHaveBeenImportedEvent\$packageKey
‪string $packageKey
Definition: AfterExtensionSiteFilesHaveBeenImportedEvent.php:29