ext_localconf.php 640 B

12345678910111213141516171819202122
  1. <?php
  2. use TYPO3\CMS\Core\Utility\GeneralUtility;
  3. call_user_func(
  4. function () {
  5. $iconRegistry = GeneralUtility::makeInstance(\TYPO3\CMS\Core\Imaging\IconRegistry::class);
  6. $iconRegistry->registerIcon(
  7. 'begriffe_list_record_icon',
  8. \TYPO3\CMS\Core\Imaging\IconProvider\SvgIconProvider::class,
  9. ['source' => 'EXT:begriffmgt/Resources/Public/Icons/book.png']
  10. );
  11. $iconRegistry->registerIcon(
  12. 'begriffe_module_icon',
  13. \TYPO3\CMS\Core\Imaging\IconProvider\SvgIconProvider::class,
  14. ['source' => 'EXT:begriffmgt/Resources/Public/Icons/chatbot.svg']
  15. );
  16. }
  17. );