[TYPO3-german] Eigener Extbase-Controller: Keine Flexform-Werte

Marco Behnke marco.behnke at innogames.de
Tue Jan 29 22:01:52 CET 2013


Am 29.01.2013 21:47, schrieb Marco Behnke:

> das habe ich natürlich so gemacht :-)
>
> In den normalen Actions des Controllers komme ich ja auch wunderbar an
> die Flexform-Werte ran über $this->settings['flexform'], nur in meiner
> eigens definierten Action nicht :-(

Sticky Cache?

Ich habe eben für das Beispiel eine eigene Action

function foobarAction() {
  var_dump($this->settings);
}

angelegt und in ext_localconf.php registriert

Tx_Extbase_Utility_Extension::configurePlugin(
	$_EXTKEY,
	'Listemployee',
	array(
		'Employee' => 'list, show, foobar',

	),
	// non-cacheable actions
	array(
		'Employee' => 'create, update, delete',

	)
);

Das ging auf Anhieb gut.


More information about the TYPO3-german mailing list