Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>What I look for in an MVC framework is for it to stay out of my way! So, when you talk about conditionally displaying UI elements based on user security level, I think of how easy it was for me to solve this in ASP.NET MVC. I just created a base controller that all my other controllers inherit from, and it has a method that fires when a web request first comes in. I that method, I check the cookie, establish who the user is and what roles they have, then I stuff that information in the request context, calling it the Token. Now anywhere else in the application where I want to see if the user has a certain role, I just grab the Token, and ask it if the user has that particular role. Easy as pie.</p> <p>ASP.NET MVC has all these fancy baked-in security mechanisms, like Authorize attributes and special filters, but I think fundamental website functions are very simple, and I don't want to go around chasing the latest implementation of those functionality. Just give me a language I can program effectively in, and a simple framework with all the stuff I need, just simple stuff really, like Request management, Response management, caching and cookies and I will be fine. That language may be PHP for you, then choose Symfony or something, or if it's java, that maybe Spring will do or else Ruby on Rails or Django. I think most all of these frameworks have the functionality you will need, and then some, but what I want to know is will the framework stay out of my way when I want it to.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload