‪TYPO3CMS  10.4
AfterFileUpdatedInIndexEvent.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 
27 {
31  private ‪$file;
32 
36  private ‪$properties;
37 
41  private ‪$updatedFields;
42 
43  public function ‪__construct(‪File ‪$file, array ‪$properties, array ‪$updatedFields)
44  {
45  $this->file = ‪$file;
46  $this->properties = ‪$properties;
47  $this->updatedFields = ‪$updatedFields;
48  }
49 
50  public function ‪getFile(): ‪File
51  {
53  }
54 
55  public function ‪getRelevantProperties(): array
56  {
58  }
59 
60  public function ‪getUpdatedFields(): array
61  {
63  }
64 }
‪TYPO3\CMS\Core\Resource\Event\AfterFileUpdatedInIndexEvent\__construct
‪__construct(File $file, array $properties, array $updatedFields)
Definition: AfterFileUpdatedInIndexEvent.php:40
‪TYPO3\CMS\Core\Resource\Event\AfterFileUpdatedInIndexEvent
Definition: AfterFileUpdatedInIndexEvent.php:27
‪TYPO3\CMS\Core\Resource\Event\AfterFileUpdatedInIndexEvent\getFile
‪getFile()
Definition: AfterFileUpdatedInIndexEvent.php:47
‪TYPO3\CMS\Core\Resource\Event\AfterFileUpdatedInIndexEvent\getRelevantProperties
‪getRelevantProperties()
Definition: AfterFileUpdatedInIndexEvent.php:52
‪TYPO3\CMS\Core\Resource\Event\AfterFileUpdatedInIndexEvent\$file
‪File $file
Definition: AfterFileUpdatedInIndexEvent.php:30
‪TYPO3\CMS\Core\Resource\Event\AfterFileUpdatedInIndexEvent\$properties
‪array $properties
Definition: AfterFileUpdatedInIndexEvent.php:34
‪TYPO3\CMS\Core\Resource\File
Definition: File.php:24
‪TYPO3\CMS\Core\Resource\Event\AfterFileUpdatedInIndexEvent\getUpdatedFields
‪getUpdatedFields()
Definition: AfterFileUpdatedInIndexEvent.php:57
‪TYPO3\CMS\Core\Resource\Event
Definition: AfterFileAddedEvent.php:18
‪TYPO3\CMS\Core\Resource\Event\AfterFileUpdatedInIndexEvent\$updatedFields
‪array $updatedFields
Definition: AfterFileUpdatedInIndexEvent.php:38