Strategy for building menus with multiple, overlapping roles - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T16:28:04Zhttp://stackoverflow.com/feeds/question/812293http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/812293/strategy-for-building-menus-with-multiple-overlapping-roles0Strategy for building menus with multiple, overlapping rolesCaveatrob2009-05-01T17:11:12Z2009-05-01T17:14:57Z
<p>I have a system for students, instructors, and administrators. Sometimes an instructor can also be an administrator.</p>
<p>I intend to store menus and submenus in XML. Should I store admin and instructor menus in separate nodes, and then combine them when I render, or should I have one master menu with roles attached that shows all the options when the roles are determined?</p>
http://stackoverflow.com/questions/812293/strategy-for-building-menus-with-multiple-overlapping-roles/812302#8123021Answer by Chris Thornhill for Strategy for building menus with multiple, overlapping rolesChris Thornhill2009-05-01T17:14:57Z2009-05-01T17:14:57Z<p>Absolutely attach roles to the master menu options, then include them in the instance of the menu based on the role(s) of the user. Much more flexible and easier to maintain, IMO.</p>