定数

ウィジェット固有定数
$this_widget . refid ウィジェットID
. name ウィジェット名
. action フォーム送信先URL
在庫バリエーション
. variations . {i} . id ID
. name バリエーション名
. price 単価
. stock 残在庫数

プロトタイプ

<section>

<form action="{?$this_widget.action?}" method="post">

<label class="label">バリエーション選択</label>
<select name="data[sid]">
{?foreach from=$this_widget.variations item=value?}
<option value="{?$value.id?}">{?$value.name?} (¥{?$value.price|number_format?})</option>
{?/foreach?}
</select>

<label>数量</label>
<input type="text" name="data[cnt]" size="3" />

<input type="submit" value="買い物かごへ追加" class="btn" />

</form>

</section>