news icon indicating copy to clipboard operation
news copied to clipboard

Separate plugin settings

Open kitzberger opened this issue 8 months ago • 1 comments

Feature Request

Currently it's not possible to define individuals plugin settings per CType. All 6 news CTypes are using the TS settings defined under:

plugin.tx_news.settings {
   ...
}

An individual set of TS settings for (let's say) "category list" isn't considered at all:

plugin.tx_news_category.settings {
   startingpoint = 123
}

Would be great if in NewsController->buildSettings() the settings would be put together like this:

  • TS settings from plugin.tx_news
  • TS settings from plugin.tx_news_<CType> <-- new!
  • FF settings from content element
  • Hook via $GLOBALS['TYPO3_CONF_VARS']['EXT']['news']['Controller/NewsController.php']['overrideSettings']

kitzberger avatar Oct 22 '23 12:10 kitzberger