RBAC stands for Role Based Access Control. RBAC separates the concepts of Users, Roles, and Permissions. Roles and Permissions are defined separately. Then the security Administrator decides what role should be permitted to do what action, by assigning that role to the permission. Finally, Users are assigned to Roles. The system does the rest. For […]
How to Make IsAdmin Function for the Menu Access Checking
As we have already known, IsLoggedIn is a function to check whether users have logged in to your web application that generated with PHPMaker or not. This IsLoggedIn function is often being used to determine which menus can only be accessed by the logged in users. Sometimes, you want also to display the certain menu […]