Basket in a box, fetch?

Author Message

Robin Sørlie

Tuesday 29 July 2003 6:19:12 am

Hi

Posted this in setup & design forum:

In my pagelayout template I have a "box" on the right side which show the products in basket and total amount.

I have tried this:

{section name=Basket show=$basket.items|gt(0)}
<input type="hidden" name="ProductItemIDList[]" value="{$Basket:ProductItem:item.id}" />

<table width="100%">
{section name=ProductItem loop=$basket.items}
<tr>
<td class="menybox" width="100%" colspan="2"><a class="menybox" href={concat("/content/view/full/",$Basket:ProductItem:item.node_id,"/")|ezurl}>{$Basket:ProductItem:item.item_count} x {$Basket:ProductItem:item.object_name|wash}{$Basket:ProductItem:item.item_count}</a>
</td> {/section}
</tr>
<tr>
<td class="menybox" width="50%">Total:</td>
<td class="menybox" width="50%"></td>
</tr>
<tr>
<td class="menybox" width="50%">{$basket.total_inc_vat|l10n(currency)}</td>
<td class="menybox" width="50%">{$basket.total_ex_vat|l10n(currency)}</td>
</tr>
</table>
{/section}

{section name=Basket show=$basket.items|lt(1) } You have no products in your basket.
{/section}

This works fine when I'm in /shop/basket/, but not when browsing around for more products. I suppose I need a fetch function here, but how can I fetch from basket?

Found this on the forum http://www.ez.no/developer/ez_publish_3/forum/developer/referencing_shop_baskets_when_continuing_shopping

But I'm not sure what Bård is thinking about.

-Robin

Jan Borsodi

Tuesday 29 July 2003 1:42:05 pm

I don't think there is a fetch function available for this at the moment. However by creating a custom template operator you could return the basket object. Using it could be something like.

{let basket=currentbasket()}
{$basket.items}
{/let}

The template operator would have to programmed in PHP though.

--
Amos

Documentation: http://ez.no/ez_publish/documentation
FAQ: http://ez.no/ez_publish/documentation/faq

Powered by eZ Publish™ CMS Open Source Web Content Management. Copyright © 1999-2014 eZ Systems AS (except where otherwise noted). All rights reserved.