‪TYPO3CMS  10.4
FeeditExtractionUpdate.php
Go to the documentation of this file.
1 <?php
2 
3 /*
4  * This file is part of the TYPO3 CMS project.
5  *
6  * It is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU General Public License, either version 2
8  * of the License, or any later version.
9  *
10  * For the full copyright and license information, please read the
11  * LICENSE.txt file that was distributed with this source code.
12  *
13  * The TYPO3 project - inspiring people to share!
14  */
15 
17 
19 
25 {
29  protected ‪$extension;
30 
34  protected ‪$confirmation;
35 
36  public function ‪__construct()
37  {
38  $this->extension = new ‪ExtensionModel(
39  'feedit',
40  'Deprecated feedit extension',
41  '10.0.0',
42  'friendsoftypo3/feedit',
43  'Contains an old approach for content editing in a TYPO3 Frontend.'
44  );
45 
46  $this->confirmation = new ‪Confirmation(
47  'Are you sure?',
48  'This extension is outdated and does not work very well. ' . $this->extension->getDescription(),
49  false
50  );
51  }
52 
58  public function ‪getConfirmation(): ‪Confirmation
59  {
61  }
62 
69  public function ‪getIdentifier(): string
70  {
71  return 'feeditExtension';
72  }
73 
79  public function ‪getTitle(): string
80  {
81  return 'Install outdated extension "feedit" from TER if editors used this extension in earlier core versions.';
82  }
83 
89  public function ‪getDescription(): string
90  {
91  return 'The extension "feedit" allows editing content elements directly in the Frontend.';
92  }
93 
100  public function ‪updateNecessary(): bool
101  {
102  return !‪ExtensionManagementUtility::isLoaded('feedit');
103  }
104 
112  public function ‪getPrerequisites(): array
113  {
114  return [
115  DatabaseUpdatedPrerequisite::class
116  ];
117  }
118 }
‪TYPO3\CMS\Install\Updates\FeeditExtractionUpdate\getTitle
‪string getTitle()
Definition: FeeditExtractionUpdate.php:77
‪TYPO3\CMS\Install\Updates\FeeditExtractionUpdate\getIdentifier
‪string getIdentifier()
Definition: FeeditExtractionUpdate.php:67
‪TYPO3\CMS\Install\Updates\FeeditExtractionUpdate\getPrerequisites
‪string[] getPrerequisites()
Definition: FeeditExtractionUpdate.php:110
‪TYPO3\CMS\Install\Updates
Definition: AbstractDownloadExtensionUpdate.php:16
‪TYPO3\CMS\Core\Utility\ExtensionManagementUtility
Definition: ExtensionManagementUtility.php:43
‪TYPO3\CMS\Install\Updates\ExtensionModel
Definition: ExtensionModel.php:26
‪TYPO3\CMS\Install\Updates\FeeditExtractionUpdate\getDescription
‪string getDescription()
Definition: FeeditExtractionUpdate.php:87
‪TYPO3\CMS\Install\Updates\Confirmation
Definition: Confirmation.php:21
‪TYPO3\CMS\Install\Updates\FeeditExtractionUpdate\getConfirmation
‪TYPO3 CMS Install Updates Confirmation getConfirmation()
Definition: FeeditExtractionUpdate.php:56
‪TYPO3\CMS\Install\Updates\AbstractDownloadExtensionUpdate
Definition: AbstractDownloadExtensionUpdate.php:31
‪TYPO3\CMS\Install\Updates\FeeditExtractionUpdate\$extension
‪TYPO3 CMS Install Updates ExtensionModel $extension
Definition: FeeditExtractionUpdate.php:28
‪TYPO3\CMS\Install\Updates\FeeditExtractionUpdate
Definition: FeeditExtractionUpdate.php:25
‪TYPO3\CMS\Install\Updates\FeeditExtractionUpdate\updateNecessary
‪bool updateNecessary()
Definition: FeeditExtractionUpdate.php:98
‪TYPO3\CMS\Install\Updates\FeeditExtractionUpdate\$confirmation
‪TYPO3 CMS Install Updates Confirmation $confirmation
Definition: FeeditExtractionUpdate.php:32
‪TYPO3\CMS\Core\Utility\ExtensionManagementUtility\isLoaded
‪static bool isLoaded($key)
Definition: ExtensionManagementUtility.php:114
‪TYPO3\CMS\Install\Updates\FeeditExtractionUpdate\__construct
‪__construct()
Definition: FeeditExtractionUpdate.php:34