I’m making some first steps in Typo3 and am currently trying to make a simple CRUD extension. I want to be able to edit a db-table – create records, read them, edit them and finaly delete them. Just something like phpMyAdmin does, but just in the Typo3 BE.
But I can’t find anything about CRUD and Typo3. I’ve created my extension with kickstart and already created the table, I’ve found a way to read its content and print it in the BE, but how do I make the other things? Is there a tutorial, or does anyone know a simple extension that does something similar I can look into to learn how it’s done?
by adding the table in the kickstarter and installing the extension, you can modify the records of this table through the List module. So I don’t know, what else you want to do with this records (as the whole CRUD thing (for BE editors) is handled by the list module).
If you want to display the records in Frontend, you have to create a Plugin, which makes some output (probably based on the records in your table..).