<#-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <#-- variable setup and worker calls --> <#if (requestAttributes.topLevelList)??><#assign topLevelList = requestAttributes.topLevelList> <#if (requestAttributes.curCategoryId)??><#assign curCategoryId = requestAttributes.curCategoryId> <#-- looping macro --> <#macro categoryList parentCategory category wrapInBox> <#if catContentWrappers?? && catContentWrappers[category.productCategoryId]?? && catContentWrappers[category.productCategoryId].get("CATEGORY_NAME", "html")??> <#assign categoryName = catContentWrappers[category.productCategoryId].get("CATEGORY_NAME", "html")> <#else> <#assign categoryName = category.categoryName!> <#if catContentWrappers?? && catContentWrappers[category.productCategoryId]?? && catContentWrappers[category.productCategoryId].get("DESCRIPTION", "html")??> <#assign categoryDescription = catContentWrappers[category.productCategoryId].get("DESCRIPTION", "html")> <#else> <#assign categoryDescription = category.description!> <#if curCategoryId?? && curCategoryId == category.productCategoryId> <#assign browseCategoryButtonClass = "browsecategorybuttondisabled"> <#else> <#assign browseCategoryButtonClass = "browsecategorybutton"> <#if wrapInBox == "Y">

  • <#if parentCategory?has_content> <#assign parentCategoryId = parentCategory.productCategoryId/> <#else> <#assign parentCategoryId = ""/> <#if categoryName?has_content> ${categoryName} <#else> ${categoryDescription?default("")} <#if (Static["org.apache.ofbiz.product.category.CategoryWorker"] .checkTrailItem(request, category.getString("productCategoryId"))) || (curCategoryId?? && curCategoryId == category.productCategoryId)> <#local subCatList = Static["org.apache.ofbiz.product.category.CategoryWorker"] .getRelatedCategoriesRet(request, "subCatList", category.getString("productCategoryId"), true)> <#if subCatList??> <#list subCatList as subCat>
      <@categoryList parentCategory=category category=subCat wrapInBox="N"/>
  • <#if wrapInBox == "Y">
    <#if topLevelList?has_content>