Skip to content

Commit

Permalink
[MAINTENANCE] Fix calling registerPlugin with vendor name (#1243)
Browse files Browse the repository at this point in the history
Co-authored-by: Sebastian Meyer <[email protected]>
  • Loading branch information
beatrycze-volk and sebastian-meyer committed Jun 3, 2024
1 parent 74f6343 commit 4a9f675
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions Configuration/TCA/Overrides/tt_content.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,105 +79,105 @@
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue('dlf_view3d', 'FILE:EXT:' . 'dlf/Configuration/FlexForms/View3D.xml');

\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerPlugin(
'Kitodo.Dlf',
'Dlf',
'Search',
'LLL:EXT:dlf/Resources/Private/Language/locallang_be.xlf:plugins.search.title',
'EXT:dlf/Resources/Public/Icons/tx-dlf-search.svg'
);

\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerPlugin(
'Kitodo.Dlf',
'Dlf',
'Feeds',
'LLL:EXT:dlf/Resources/Private/Language/locallang_be.xlf:plugins.feeds.title',
'EXT:dlf/Resources/Public/Icons/tx-dlf-feeds.svg'
);

\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerPlugin(
'Kitodo.Dlf',
'Dlf',
'Statistics',
'LLL:EXT:dlf/Resources/Private/Language/locallang_be.xlf:plugins.statistics.title',
'EXT:dlf/Resources/Public/Icons/tx-dlf-statistics.svg'
);

\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerPlugin(
'Kitodo.Dlf',
'Dlf',
'TableOfContents',
'LLL:EXT:dlf/Resources/Private/Language/locallang_be.xlf:plugins.tableofcontents.title',
'EXT:dlf/Resources/Public/Icons/tx-dlf-tableofcontents.svg'
);

\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerPlugin(
'Kitodo.Dlf',
'Dlf',
'PageGrid',
'LLL:EXT:dlf/Resources/Private/Language/locallang_be.xlf:plugins.pagegrid.title',
'EXT:dlf/Resources/Public/Icons/tx-dlf-pagegrid.svg'
);

\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerPlugin(
'Kitodo.Dlf',
'Dlf',
'Navigation',
'LLL:EXT:dlf/Resources/Private/Language/locallang_be.xlf:plugins.navigation.title',
'EXT:dlf/Resources/Public/Icons/tx-dlf-navigation.svg'
);

\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerPlugin(
'Kitodo.Dlf',
'Dlf',
'AudioPlayer',
'LLL:EXT:dlf/Resources/Private/Language/locallang_be.xlf:plugins.audioplayer.title',
'EXT:dlf/Resources/Public/Icons/tx-dlf-audioplayer.svg'
);

\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerPlugin(
'Kitodo.Dlf',
'Dlf',
'Calendar',
'LLL:EXT:dlf/Resources/Private/Language/locallang_be.xlf:plugins.calendar.title',
'EXT:dlf/Resources/Public/Icons/tx-dlf-calendar.svg'
);

\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerPlugin(
'Kitodo.Dlf',
'Dlf',
'PageView',
'LLL:EXT:dlf/Resources/Private/Language/locallang_be.xlf:plugins.pageview.title',
'EXT:dlf/Resources/Public/Icons/tx-dlf-pageview.svg'
);

\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerPlugin(
'Kitodo.Dlf',
'Dlf',
'Basket',
'LLL:EXT:dlf/Resources/Private/Language/locallang_be.xlf:plugins.basket.title',
'EXT:dlf/Resources/Public/Icons/tx-dlf-basket.svg'
);

\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerPlugin(
'Kitodo.Dlf',
'Dlf',
'Toolbox',
'LLL:EXT:dlf/Resources/Private/Language/locallang_be.xlf:plugins.toolbox.title',
'EXT:dlf/Resources/Public/Icons/tx-dlf-toolbox.svg'
);

\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerPlugin(
'Kitodo.Dlf',
'Dlf',
'OaiPmh',
'LLL:EXT:dlf/Resources/Private/Language/locallang_be.xlf:plugins.oaipmh.title',
'EXT:dlf/Resources/Public/Icons/tx-dlf-oaipmh.svg'
);

\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerPlugin(
'Kitodo.Dlf',
'Dlf',
'ListView',
'LLL:EXT:dlf/Resources/Private/Language/locallang_be.xlf:plugins.listview.title',
'EXT:dlf/Resources/Public/Icons/tx-dlf-listview.svg'
);

\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerPlugin(
'Kitodo.Dlf',
'Dlf',
'Collection',
'LLL:EXT:dlf/Resources/Private/Language/locallang_be.xlf:plugins.collection.title',
'EXT:dlf/Resources/Public/Icons/tx-dlf-collection.svg'
);

\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerPlugin(
'Kitodo.Dlf',
'Dlf',
'Metadata',
'LLL:EXT:dlf/Resources/Private/Language/locallang_be.xlf:plugins.metadata.title',
'EXT:dlf/Resources/Public/Icons/tx-dlf-metadata.svg'
Expand Down

0 comments on commit 4a9f675

Please sign in to comment.