I need some inspirations on how to structure an Symfony(CMF) application. I have a customer which wants to manage all the content on his website with phpMyAdmin as he did this over the last years successfully. The old website need to be rewrite completely, but the customer still would like to add new contents and pages with the help of phpmyadmin.
The customer also has different kind of documents. There are for example courses, seminars and dates which belongs together (kind of 1:n relationship between courses and date, seminars and dates). And there are some other document-types without a relation to another type.
I'm not sure if I can use Symfony CMF and/or doctrine/phpcr-odm for this project? Can I manage relations between different document types? Or how can I mix Doctrine/ORM (Entities) and Doctrine/phpcr-odm (Documents) together? Are there some bridges that I still can manage my document contents with the help of phpMyAdmin?
I already took a look into symfony-cmf/sandbox and also took a look into CMS where are Symfony-CMF is underlying. But I'm still confused about the right choice.
I repeat the customer needs:
- build site-structure / menues in a hierarchical tree (add, remove, delete nodes from tree)
- edit contents of pages directly in phpmyadmin
- seo optimization options page by page (title, descriptions, etc.)
- adding contents which are related together (courses and dates => order-forms)
Thanks in advance for some nice ideas :-)