‪TYPO3CMS  10.4
AfterFileProcessingEvent.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 
23 
30 {
34  private ‪$driver;
35 
39  private ‪$processedFile;
40 
44  private ‪$file;
45 
49  private ‪$taskType;
50 
54  private ‪$configuration;
55 
57  {
58  $this->driver = ‪$driver;
59  $this->processedFile = ‪$processedFile;
60  $this->file = ‪$file;
61  $this->taskType = ‪$taskType;
62  $this->configuration = ‪$configuration;
63  }
64 
66  {
68  }
69 
71  {
72  $this->processedFile = ‪$processedFile;
73  }
74 
75  public function ‪getDriver(): ‪DriverInterface
76  {
77  return ‪$this->driver;
78  }
79 
80  public function ‪getFile(): ‪FileInterface
81  {
82  return ‪$this->file;
83  }
84 
85  public function ‪getTaskType(): string
86  {
87  return ‪$this->taskType;
88  }
89 
90  public function ‪getConfiguration(): array
91  {
93  }
94 }
‪TYPO3\CMS\Core\Resource\Event\AfterFileProcessingEvent
Definition: AfterFileProcessingEvent.php:30
‪TYPO3\CMS\Core\Resource\FileInterface
Definition: FileInterface.php:22
‪TYPO3\CMS\Core\Resource\Event\AfterFileProcessingEvent\$configuration
‪array $configuration
Definition: AfterFileProcessingEvent.php:49
‪TYPO3\CMS\Core\Resource\Event\AfterFileProcessingEvent\getProcessedFile
‪getProcessedFile()
Definition: AfterFileProcessingEvent.php:60
‪TYPO3\CMS\Core\Resource\Event\AfterFileProcessingEvent\getDriver
‪getDriver()
Definition: AfterFileProcessingEvent.php:70
‪TYPO3\CMS\Core\Resource\Event\AfterFileProcessingEvent\getFile
‪getFile()
Definition: AfterFileProcessingEvent.php:75
‪TYPO3\CMS\Core\Resource\Event\AfterFileProcessingEvent\__construct
‪__construct(DriverInterface $driver, ProcessedFile $processedFile, FileInterface $file, string $taskType, array $configuration)
Definition: AfterFileProcessingEvent.php:51
‪TYPO3\CMS\Core\Resource\Event\AfterFileProcessingEvent\$driver
‪DriverInterface $driver
Definition: AfterFileProcessingEvent.php:33
‪TYPO3\CMS\Core\Resource\Driver\DriverInterface
Definition: DriverInterface.php:23
‪TYPO3\CMS\Core\Resource\Event\AfterFileProcessingEvent\setProcessedFile
‪setProcessedFile(ProcessedFile $processedFile)
Definition: AfterFileProcessingEvent.php:65
‪TYPO3\CMS\Core\Resource\Event\AfterFileProcessingEvent\$taskType
‪string $taskType
Definition: AfterFileProcessingEvent.php:45
‪TYPO3\CMS\Core\Resource\Event\AfterFileProcessingEvent\getConfiguration
‪getConfiguration()
Definition: AfterFileProcessingEvent.php:85
‪TYPO3\CMS\Core\Resource\Event\AfterFileProcessingEvent\getTaskType
‪getTaskType()
Definition: AfterFileProcessingEvent.php:80
‪TYPO3\CMS\Core\Resource\Event\AfterFileProcessingEvent\$file
‪FileInterface $file
Definition: AfterFileProcessingEvent.php:41
‪TYPO3\CMS\Core\Resource\ProcessedFile
Definition: ProcessedFile.php:44
‪TYPO3\CMS\Core\Resource\Event\AfterFileProcessingEvent\$processedFile
‪ProcessedFile $processedFile
Definition: AfterFileProcessingEvent.php:37
‪TYPO3\CMS\Core\Resource\Event
Definition: AfterFileAddedEvent.php:18