add missing template variable help for the MiniCart macro

This commit is contained in:
Colin Kuskie 2008-06-23 22:01:34 +00:00
parent 99eb45695a
commit fcf53d7bde
2 changed files with 92 additions and 0 deletions

View file

@ -0,0 +1,35 @@
package WebGUI::Help::Macro_MiniCart;
use strict;
our $HELP = {
'template variables' => {
title => 'minicart title',
body => '',
fields => [],
variables => [
{
name => 'items',
variables => [
{
name => 'name',
},
{
name => 'quantity',
},
{
name => 'price',
},
{
name => 'url',
},
],
},
],
related => [
],
},
};
1; ##All perl modules must return true