Author: jonesde
Date: Fri Feb 9 08:25:47 2007
New Revision: 505350
URL: http://svn.apache.org/viewvc?view=rev&rev=505350
Log:
Added support for categoryName rather than just description
Modified:
ofbiz/trunk/applications/order/webapp/ordermgr/entry/catalog/breadcrumbs.ftl
Modified:
ofbiz/trunk/applications/order/webapp/ordermgr/entry/catalog/breadcrumbs.ftl
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/webapp/ordermgr/entry/catalog/breadcrumbs.ftl?view=diff&rev=505350&r1=505349&r2=505350
==============================================================================
---
ofbiz/trunk/applications/order/webapp/ordermgr/entry/catalog/breadcrumbs.ftl
(original)
+++
ofbiz/trunk/applications/order/webapp/ordermgr/entry/catalog/breadcrumbs.ftl
Fri Feb 9 08:25:47 2007
@@ -28,13 +28,17 @@
<#if
(Static["org.ofbiz.product.category.CategoryWorker"].checkTrailItem(request,
category.getString("productCategoryId"))) || (curCategoryId?exists &&
curCategoryId == category.productCategoryId)>
<#if curCategoryId?exists && curCategoryId == category.productCategoryId>
- <#if catContentWrappers?exists &&
catContentWrappers[category.productCategoryId]?exists &&
catContentWrappers[category.productCategoryId].get("DESCRIPTION")?exists>
+ <#if catContentWrappers?exists &&
catContentWrappers[category.productCategoryId]?exists &&
catContentWrappers[category.productCategoryId].get("CATEGORY_NAME")?exists>
+ -> <a
href="<@ofbizUrl>category/~category_id=${category.productCategoryId}${pStr?if_exists}</@ofbizUrl>"
class="buttontextdisabled">${catContentWrappers[category.productCategoryId].get("CATEGORY_NAME")}</a>
+ <#elseif catContentWrappers?exists &&
catContentWrappers[category.productCategoryId]?exists &&
catContentWrappers[category.productCategoryId].get("DESCRIPTION")?exists>
-> <a
href="<@ofbizUrl>category/~category_id=${category.productCategoryId}${pStr?if_exists}</@ofbizUrl>"
class="buttontextdisabled">${catContentWrappers[category.productCategoryId].get("DESCRIPTION")}</a>
<#else>
-> <a
href="<@ofbizUrl>category/~category_id=${category.productCategoryId}${pStr?if_exists}</@ofbizUrl>"
class="buttontextdisabled">${category.description?if_exists}</a>
</#if>
<#else>
- <#if catContentWrappers?exists &&
catContentWrappers[category.productCategoryId]?exists &&
catContentWrappers[category.productCategoryId].get("DESCRIPTION")?exists>
+ <#if catContentWrappers?exists &&
catContentWrappers[category.productCategoryId]?exists &&
catContentWrappers[category.productCategoryId].get("CATEGORY_NAME")?exists>
+ -> <a
href="<@ofbizUrl>category/~category_id=${category.productCategoryId}${pStr?if_exists}</@ofbizUrl>"
class="linktext">${catContentWrappers[category.productCategoryId].get("CATEGORY_NAME")}</a>
+ <#elseif catContentWrappers?exists &&
catContentWrappers[category.productCategoryId]?exists &&
catContentWrappers[category.productCategoryId].get("DESCRIPTION")?exists>
-> <a
href="<@ofbizUrl>category/~category_id=${category.productCategoryId}${pStr?if_exists}</@ofbizUrl>"
class="linktext">${catContentWrappers[category.productCategoryId].get("DESCRIPTION")}</a>
<#else>
-> <a
href="<@ofbizUrl>category/~category_id=${category.productCategoryId}${pStr?if_exists}</@ofbizUrl>"
class="linktext">${category.description?if_exists}</a>