Skip to main content
Toggle navigation menu
Submit a request
Sign in
Total Processing
Online Payments
Developer Resources
Developer Resources
Resources for developers for doing stuff they need to for their job
<% categories.forEach(function(category) { %> <% if (category.isActive) { %>
<%= category.name %>
<%= partial('partial-article-list-sections', { id: 'category-' + category.id, parentId: '#sidebar-navigation', sections: category.sections, activeCategoryId: category.id, activeSectionId: activeSectionId, activeArticleId: activeArticleId, partial: partial }) %>
<% } %> <% }); %>
<% if (sections.length) { %>
<% sections.forEach(function(section) { %>
<%= section.name %>
<% if (section.articles && section.articles.length) { %> <% section.articles.forEach(function(article) { %>
<%= article.title %>
<% }); %> <% } %> <% if (section.sections && section.sections.length) { %> <% section.sections.forEach(function(subsection) { %>
<%= subsection.name %>
<% if (subsection.articles && subsection.articles.length) { %>
<% subsection.articles.forEach(function(article) { %>
<%= article.title %>
<% }); %>
<% } %>
<% }); %> <% } %>
<% }); %>
<% } %>
<% if (items.length > 1) { %>
In this article
<% items.forEach(function(item, index) { %>
<%= item.name %>
<% }); %>
<% } %>
<% var getColumnClasses = function(columnNumber) { var classNames = 'col-12'; if (columnNumber >= 2) classNames += ' md:col-6'; if (columnNumber >= 3) classNames += ' lg:col-4'; if (columnNumber >= 4) classNames += ' xl:col-3'; return classNames; } %> <% if (articles.length) { %>
<% articles.forEach(function(article) { %>
<% if (article.promoted) { %>
<% } else { %>
<% } %>
<%= article.title %>
<% }) %>
<% } %>
<% if (title) { %>
<%= title %>
<% } %>
<% if (forms.length) { %>
<% forms.forEach(function(form) { %>
<%= form.title %>
<% }); %>
<% } %>
<% if (children.length) { %>
<% children.forEach(function(child, index) { %> <% var isActive = initial === index %>
<% if (child.title === 'Available Filters') { %>
<% } %>
<%= child.title %>
<%= child.innerHTML %>
<% }) %>
<% } %>