Skip to content

Instantly share code, notes, and snippets.

@mattmetten
Last active March 10, 2016 21:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattmetten/ffdc694acc8f2189b1c6 to your computer and use it in GitHub Desktop.
Save mattmetten/ffdc694acc8f2189b1c6 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8" ?>
<j:jelly trim="false" xmlns:j="jelly:core" xmlns:g="glide" xmlns:j2="null" xmlns:g2="null">
<!-- Let's do a call to the specific navigation menu that we want to use -->
<g:evaluate>
var sectionGR = new GlideRecord('menu_section');
sectionGR.addQuery('sys_id', 'REPACE WITH YOUR SYS ID OF YOUR NAVIGATION MENU');
sectionGR.addQuery('active', 'true');
sectionGR.orderBy('order');
sectionGR.query();
<!-- Let's also make sure the current user has the right role to see the specific menu item -->
function canViewMenu(gr) {
if (gr.logged_on == true)
if (!gs.isLoggedIn())
return false;
if (gr.roles.nil())
return true;
return gs.getUser().hasRole(gr.roles);
}
</g:evaluate>
<j:if test="${sectionGR.hasNext()}">
<j:set var="jvar_first_section" value="true" />
<!-- Now we'll do the loop through the results -->
<j:while test="${sectionGR.next()}">
<!-- Include the following standard UI Macro -->
<g:cms_menu_set_url_and_target />
<j:if test="${canViewMenu(sectionGR)}">
<!-- Now we'll loop through the individual items of the menu -->
<g:evaluate>
var itemGR = new GlideRecord('menu_item');
itemGR.addQuery('menu_section', '${sectionGR.sys_id}');
itemGR.addQuery('active', 'true');
itemGR.orderBy('order');
itemGR.query();
</g:evaluate>
<j:set var="jvar_got_menu_items" value="false" />
<j:if test="${itemGR.hasNext()}">
<j:while test="${itemGR.next()}">
<j:if test="${canViewMenu(itemGR)}”>
<!-- The following class tells it (in Bootstrap framework) to render 3 columns on desktop, 2 columns on mobile -->
<div class="col-lg-4 col-md-4 col-sm-6">
<a href="${itemGR.url}">
<img src="${itemGR.image.getDisplayValue()}"/></a>
<h6><a href="${itemGR.url}">${itemGR.name.getDisplayValue()}</a></h6>
</div>
</j:if>
</j:while> <!-- End the items loop -->
</j:if>
</j:if>
</j:while> <!-- End the menu loop -->
</j:if>
</j:jelly>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment