Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUGFIX] Remove obsolete plugin configuration key prefix #61

Merged
merged 3 commits into from
Dec 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
max-parallel: 2
matrix:
php-versions: [7.4, 8.0, 8.1]
php-versions: [7.4, 8.0, 8.1, 8.2, 8.3]
typo3-versions: [11.5]

name: Run tests with PHP ${{ matrix.php-versions }} using TYPO3 ${{ matrix.typo3-versions }}
Expand Down
1 change: 0 additions & 1 deletion Classes/Domain/Model/GalleryCollection.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ class GalleryCollection extends ObjectStorage
* @param int|string $uid UID int or virtual UID string
*
* @param int|string $uid
* @return GalleryItem
*/
public function getByIdentifier($uid): ?GalleryItem
{
Expand Down
8 changes: 0 additions & 8 deletions Classes/Domain/Model/GalleryItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,35 +33,30 @@ class GalleryItem extends AbstractEntity
/**
* tt_content UID.
*
* @var int
*/
protected ?int $ttContentUid = null;

/**
* title.
*
* @var string
*/
protected ?string $title = null;

/**
* link.
*
* @var string
*/
protected ?string $link = null;

/**
* imageReference.
*
* @var \TYPO3\CMS\Extbase\Domain\Model\FileReference
*/
protected ?\TYPO3\CMS\Extbase\Domain\Model\FileReference $imageReference = null;

/**
* image.
*
* @var \TYPO3\CMS\Core\Resource\File
*/
protected ?File $image = null;

Expand All @@ -72,9 +67,6 @@ class GalleryItem extends AbstractEntity
*/
protected ?ObjectStorage $textItems = null;

/**
* @var array
*/
protected ?array $imageProperties = null;

/**
Expand Down
2 changes: 1 addition & 1 deletion Configuration/TCA/Overrides/tt_content.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
$configuration = \FelixNagel\GenericGallery\Utility\EmConfiguration::getSettings();

\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerPlugin(
'TYPO3.GenericGallery',
'GenericGallery',
'Pi1',
'LLL:EXT:generic_gallery/Resources/Private/Language/locallang_db.xlf:generic_gallery.plugin.title'
);
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"fluid"
],
"require": {
"php": ">=7.4,<8.2",
"php": ">=7.4,<8.4",
"typo3/cms-core": ">=11.4.0,<=11.5.99"
},
"require-dev": {
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
'version' => '5.2.1-dev',
'constraints' => [
'depends' => [
'php' => '7.4.0-8.1.99',
'php' => '7.4.0-8.3.99',
'typo3' => '11.4.0-11.5.99',
],
'suggests' => [
Expand Down
Loading