简体   繁体   中英

Override 3party widget Templates in TYPO3

I have an Extension and i want to override the widget templates. For Paginate ViewHelper looks like this:

widget.TYPO3\CMS\Fluid\ViewHelpers\Widget\PaginateViewHelper.templateRootPath = Path to templates

But how is it for 3party Extensions? (TYPO3 9.5)

Thank you!!!

I think what you're searching for is something like this:

plugin.tx_foobar {
  view {
    widget {
      TYPO3\CMS\Fluid\ViewHelpers\Widget\PaginateViewHelper {
        templateRootPath = {$plugin.tx_foobar.view.templateRootPath}
      }
    }
  }
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM