This is my first foray into "appropriately" using an MVC construct (with Code Igniter). I'm hoping some guru can wave her hands and tell me where the following code elements belong. I have them written, I just want to plunk them in the "right" spot!
- Call a DB and see if we have a user signed up
- Route to a signup page
- Route to the main preferences page for existing users
- Make DB queries for producing a new user
- Make update queries when users change their preferences
The "service" being provided is a cron job cycling every 10 minutes, which I still have written outside of Code Igniter. Is this something I should/could add to the logic somewhere? (It pings Twitter, and does stuff with any new tweets)
Let me know if I can clarify any part of this!