‪TYPO3CMS  10.4
BeforeRecordIsAnalyzedEvent.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 ‪$tableName;
32 
36  private ‪$record;
37 
41  private ‪$fields;
42 
46  private ‪$results;
47 
51  private ‪$linkAnalyzer;
52 
54  {
55  $this->tableName = ‪$tableName;
56  $this->record = ‪$record;
57  $this->fields = ‪$fields;
58  $this->linkAnalyzer = ‪$linkAnalyzer;
59  $this->results = ‪$results;
60  }
61 
62  public function ‪getTableName(): string
63  {
64  return ‪$this->tableName;
65  }
66 
67  public function ‪getRecord(): array
68  {
69  return ‪$this->record;
70  }
71 
72  public function ‪setRecord(array ‪$record): void
73  {
74  $this->record = ‪$record;
75  }
76 
77  public function ‪getFields(): array
78  {
79  return ‪$this->fields;
80  }
81 
82  public function ‪getResults(): array
83  {
84  return ‪$this->results;
85  }
86 
87  public function ‪setResults(array ‪$results): void
88  {
89  $this->results = ‪$results;
90  }
91 
92  public function ‪getLinkAnalyzer(): ‪LinkAnalyzer
93  {
95  }
96 }
‪TYPO3\CMS\Linkvalidator\Event\BeforeRecordIsAnalyzedEvent\setResults
‪setResults(array $results)
Definition: BeforeRecordIsAnalyzedEvent.php:82
‪TYPO3\CMS\Linkvalidator\Event\BeforeRecordIsAnalyzedEvent\$record
‪array $record
Definition: BeforeRecordIsAnalyzedEvent.php:34
‪TYPO3\CMS\Linkvalidator\Event\BeforeRecordIsAnalyzedEvent\getTableName
‪getTableName()
Definition: BeforeRecordIsAnalyzedEvent.php:57
‪TYPO3\CMS\Linkvalidator\Event\BeforeRecordIsAnalyzedEvent\getResults
‪getResults()
Definition: BeforeRecordIsAnalyzedEvent.php:77
‪TYPO3\CMS\Linkvalidator\Event\BeforeRecordIsAnalyzedEvent\getFields
‪getFields()
Definition: BeforeRecordIsAnalyzedEvent.php:72
‪TYPO3\CMS\Linkvalidator\Event\BeforeRecordIsAnalyzedEvent\$results
‪array $results
Definition: BeforeRecordIsAnalyzedEvent.php:42
‪TYPO3\CMS\Linkvalidator\Event\BeforeRecordIsAnalyzedEvent\$linkAnalyzer
‪LinkAnalyzer $linkAnalyzer
Definition: BeforeRecordIsAnalyzedEvent.php:46
‪TYPO3\CMS\Linkvalidator\Event\BeforeRecordIsAnalyzedEvent\$tableName
‪string $tableName
Definition: BeforeRecordIsAnalyzedEvent.php:30
‪TYPO3\CMS\Linkvalidator\Event\BeforeRecordIsAnalyzedEvent\getRecord
‪getRecord()
Definition: BeforeRecordIsAnalyzedEvent.php:62
‪TYPO3\CMS\Linkvalidator\Event\BeforeRecordIsAnalyzedEvent\$fields
‪array $fields
Definition: BeforeRecordIsAnalyzedEvent.php:38
‪TYPO3\CMS\Linkvalidator\Event\BeforeRecordIsAnalyzedEvent
Definition: BeforeRecordIsAnalyzedEvent.php:27
‪TYPO3\CMS\Linkvalidator\Event\BeforeRecordIsAnalyzedEvent\setRecord
‪setRecord(array $record)
Definition: BeforeRecordIsAnalyzedEvent.php:67
‪TYPO3\CMS\Linkvalidator\Event
Definition: BeforeRecordIsAnalyzedEvent.php:18
‪TYPO3\CMS\Linkvalidator\Event\BeforeRecordIsAnalyzedEvent\__construct
‪__construct(string $tableName, array $record, array $fields, LinkAnalyzer $linkAnalyzer, array $results)
Definition: BeforeRecordIsAnalyzedEvent.php:48
‪TYPO3\CMS\Linkvalidator\Event\BeforeRecordIsAnalyzedEvent\getLinkAnalyzer
‪getLinkAnalyzer()
Definition: BeforeRecordIsAnalyzedEvent.php:87