‪TYPO3CMS  ‪main
ExtensionModel.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 
27 {
28  public function ‪__construct(
29  protected string $key,
30  protected string $title,
31  protected string $versionString,
32  protected string $composerName,
33  protected string $description
34  ) {}
35 
36  public function ‪getDescription(): string
37  {
38  return $this->description;
39  }
40 
41  public function ‪getKey(): string
42  {
43  return $this->key;
44  }
45 
46  public function ‪getTitle(): string
47  {
48  return $this->title;
49  }
50 
51  public function ‪getVersionString(): string
52  {
53  return $this->versionString;
54  }
55 
56  public function ‪getComposerName(): string
57  {
58  return $this->composerName;
59  }
60 }
‪TYPO3\CMS\Extensionmanager\Updates\ExtensionModel\getDescription
‪getDescription()
Definition: ExtensionModel.php:36
‪TYPO3\CMS\Extensionmanager\Updates\ExtensionModel\__construct
‪__construct(protected string $key, protected string $title, protected string $versionString, protected string $composerName, protected string $description)
Definition: ExtensionModel.php:28
‪TYPO3\CMS\Extensionmanager\Updates\ExtensionModel\getVersionString
‪getVersionString()
Definition: ExtensionModel.php:51
‪TYPO3\CMS\Extensionmanager\Updates\ExtensionModel
Definition: ExtensionModel.php:27
‪TYPO3\CMS\Extensionmanager\Updates\ExtensionModel\getTitle
‪getTitle()
Definition: ExtensionModel.php:46
‪TYPO3\CMS\Extensionmanager\Updates\ExtensionModel\getKey
‪getKey()
Definition: ExtensionModel.php:41
‪TYPO3\CMS\Extensionmanager\Updates\ExtensionModel\getComposerName
‪getComposerName()
Definition: ExtensionModel.php:56
‪TYPO3\CMS\Extensionmanager\Updates
Definition: AbstractDownloadExtensionUpdate.php:18