Hi
I spent the morning hacking together the basic components of my own MVC framework, which currently only parses a url, loads the class and calls the right method...
Because I obviously dont want someone to be able to access the 'add/remove' methods associated with future classes, i need to secure each method - and give access based on user-role... i am thinking that I need an array for each class which dictates which methods are public-access... and then check the class/action against each appropriate array... am I on the money, or is there a better way?
Thanks