[TYPO3-mvc] MM Tables, sorting, performance, objectStorage

Franz Koch typo3.RemoveForMessage at elements-net.de
Tue Jan 5 12:07:58 CET 2010


Hi,

> So I could use a data modell looking like this:
>
> album <-1:n-> album_content <-n:1-> image
> ===== ============= ========
> id id id
> image_id
> album_id
> sorting
>
>
> Here, "album_content" is no longer a T3 MM relation table, but a domain
> object table. But this kind of relation and sorting is no longer
> editable in a comfortable way in T3 backend - am I right?

I think it still is. You still can use IRRE by simply using this TCA

'album' => array(
	#...
	'config' => array(
		'type' => 'inline'
		'foreign_table' => 'tx_extkey_domain_model_albumcontent',
		'foreign_field' => 'album_id',
		'foreign_sortby' => 'sorting',
		#...
	)
)

That's exactly what you need I think, because I'm doing it myself for a 
similar usecase :)

-- 
kind regards,
Franz Koch

---------------------------------------------------
PayPal-Account: 'paypal _at_ elements-net _dot_ de'
---------------------------------------------------


More information about the TYPO3-project-typo3v4mvc mailing list