How can I set TS settings directly from my Extbase (6.2)'s controller?
So here:
/**
* action show
*
* @param \STUBR\Apievents\Domain\Model\Event $event
* @return void
*/
public function showAction(\STUBR\Apievents\Domain\Model\Event $event) {
// Set plugin.tx_apievents_displayevents.settings.something to value x
// --> how?
// go on
$this->view->assign('event', $event);
}
So I could do in setup.txt
lib.something < plugin.tx_apievents_displayevents.settings.something
But how?