Basic example of filtering through results #668
-
I am beginning my journey with MVC frameworks - I apologise for the newbie question. I have developed an extension using Extension Builder that shows (for example) a collection of Books and one of the Authors. There is an apparent one-to-many correlation between those. I am looking for basic examples readily available on the Internet of similar objects built with Extension Builder that I can analyse to develop a search functionality. The search functionality I envisage is a keyword-based search that consumes either the 'summary' property of a book or the 'name' property of an author. Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
I just wanna point out that while it's perfectly fine to use this scenario for training, there exist books with several authors. This is an example extension that is mentioned also in some documentation: https://github.com/TYPO3-Documentation/blog_example Furthermore you could install the styleguide extension to get an overview of many configuration options concerning fields in the backend forms, which also concerns the fields in the database tables: https://github.com/TYPO3-CMS/styleguide |
Beta Was this translation helpful? Give feedback.
I just wanna point out that while it's perfectly fine to use this scenario for training, there exist books with several authors.
You might want to consider this for the database correlation.
This is an example extension that is mentioned also in some documentation: https://github.com/TYPO3-Documentation/blog_example
Furthermore you could install the styleguide extension to get an overview of many configuration options concerning fields in the backend forms, which also concerns the fields in the database tables: https://github.com/TYPO3-CMS/styleguide