Hi
I understand what is MVC and CMS. I understand MVC pattern and how CMS should working. But I have problem with theming and the pattern.
Example:
When CMS is installed on serwer I want to change my homepage. I want to display some additional data. I change my homepage template and add a function call to pull data from DB. My new data will be displayed on my homepage. :)
But when I do this I broke MVC pattern because in this situation View decide which data should be read from DB to display on my homepage.
So... is it MVC for a CMS? Or maybe it shouldn't be a clear MVC pattern to work with situations like this? Maybe I should forget about patterns? I'm confusing...
PS Wordpress it's not build on MVC pattern, I guess?