-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #301 from franzholz/develop
breaking #92118: remove thumbnail
- Loading branch information
Showing
45 changed files
with
1,221 additions
and
201 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,14 @@ | ||
<?php | ||
use TYPO3\CMS\Core\Imaging\IconProvider\BitmapIconProvider; | ||
|
||
return [ | ||
'tt-products-wizard' => [ | ||
'provider' => \TYPO3\CMS\Core\Imaging\IconProvider\BitmapIconProvider::class, | ||
'provider' => BitmapIconProvider::class, | ||
// The source bitmap file | ||
'source' => 'EXT:tt_products/Resources/Public/Icons/PluginWizard.png', | ||
], | ||
'tt-products-product' => [ | ||
'provider' => BitmapIconProvider::class, | ||
'source' => 'EXT:tt_products/Resources/Public/Icons/tt_products.gif', | ||
] | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?php | ||
|
||
declare(strict_types = 1); | ||
|
||
(static function (): void { | ||
$selectItemArray = new \TYPO3\CMS\Core\Schema\Struct\SelectItem( | ||
'select', | ||
'LLL:EXT:tt_products/Resources/Private/Language/Pi1/locallang.xlf:plugin', | ||
'tx_ttproducts_pi1', | ||
'', | ||
'tt_products' | ||
); | ||
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin( | ||
$selectItemArray, | ||
'CType', | ||
'tx_ttproducts_pi1' | ||
); | ||
})(); |
Oops, something went wrong.