Strategy for building menus with multiple, overlapping roles - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T16:28:04Z http://stackoverflow.com/feeds/question/812293 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/812293/strategy-for-building-menus-with-multiple-overlapping-roles 0 Strategy for building menus with multiple, overlapping roles Caveatrob 2009-05-01T17:11:12Z 2009-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#812302 1 Answer by Chris Thornhill for Strategy for building menus with multiple, overlapping roles Chris Thornhill 2009-05-01T17:14:57Z 2009-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>