File: D:/web/castironradiatorcentre/changes prev/bak 2019-12-05/inc-template-shopping-status.asp
<%
' --- START OF SHOPPING STATUS TEMPLATES --- '
Sub ShowShoppingStatusHeader
%>
<!-- START OF SHOPPING STATUS -->
<%
End Sub
Sub ShowShoppingStatusItemHeader
End Sub
Sub ShowShoppingStatusEmpty
End Sub
Sub ShowShoppingStatusItem(AProductCode, AProductDashAsUnderscore, AProductCodeURLEncoded, AProductName, AQty, APrice, ADeleteHRef)
End Sub
Sub ShowShoppingStatusFooter(ASubtotal, AIsEmpty)
%>
<!-- END OF SHOPPING STATUS -->
<%
End Sub
' (SS,17/4/07)
' (SS,17/1/13) changed GetCheckoutLink to GetBasketLink
' (SS,13/8/14) bootstrap version
' (SS,4/3/16) added rel="nofollow"
' (SS,16/6/17) replaced <i> with <span>
Sub ShowShoppingStatusSummaryVersion(ATotalQty, AItemLines, ASubtotal, AIsEmpty)
%>
<div class="btn-group text-left" >
<a class="btn itp-border-box" href="<%=GetBasketLink%>" rel="nofollow" style="color:black">
<span class="glyphicon glyphicon-shopping-cart" style="color:black"></span> Basket
<%If Not AIsEmpty Then%>
<span class="badge" style="color: #fff; background-color: #5cb85c; border-color: #4cae4c"><%=ATotalQty%></span>
<%End If%>
</a>
<!--
<a class="btn dropdown-toggle itp-border-box " data-toggle="dropdown">
<span class="caret" style="color:black"></span>
</a>
-->
</div>
<%
End Sub
' --- END OF SHOPPING STATUS TEMPLATES --- '
' (SS,17/4/07) was ShowShoppingStatus added a summary version
' (SS,20/7/11) added If Not IsAjaxRequest
If Not IsAjaxRequest And Not ForProductList Then ShowShoppingStatusSummary
%>