diff --git a/lib/WebGUI/Help/Asset_Carousel.pm b/lib/WebGUI/Help/Asset_Carousel.pm new file mode 100644 index 000000000..5a0039a08 --- /dev/null +++ b/lib/WebGUI/Help/Asset_Carousel.pm @@ -0,0 +1,29 @@ +package WebGUI::Help::Asset_Carousel; +use strict; + +our $HELP = { + + 'search template' => { + title => 'carousel template help title', + body => '', + isa => [ + { namespace => "Asset_Wobject", + tag => "wobject template variables", + }, + ], + variables => [ + { 'name' => 'item_loop', + 'variables' => [ + { 'name' => 'text' }, + { 'name' => 'itemId'}, + { 'name' => 'sequenceNumber'}, + ], + } + ], + related => [], + }, + +}; + +1; + diff --git a/lib/WebGUI/i18n/English/Asset_Carousel.pm b/lib/WebGUI/i18n/English/Asset_Carousel.pm index 2522a59f0..ae38e6193 100644 --- a/lib/WebGUI/i18n/English/Asset_Carousel.pm +++ b/lib/WebGUI/i18n/English/Asset_Carousel.pm @@ -44,6 +44,36 @@ our $I18N = { lastUpdated => 0, context => q|Description of the item ID field, used as hover help.| }, + + 'carousel template help title' => { + message => q|Carousel Template Variables|, + lastUpdated => 0, + context => q|Title of a template help page.| + }, + + 'item_loop' => { + message => q|A loop containing this carousel's items.|, + lastUpdated => 0, + context => q|Description of the item_loop tmpl_loop for the template help.| + }, + + 'itemId' => { + message => q|This carousel item's id.|, + lastUpdated => 0, + context => q|Description of the itemId tmpl_var for the template help.| + }, + + 'text' => { + message => q|This carousel item's text.|, + lastUpdated => 0, + context => q|Description of the text tmpl_var for the template help.| + }, + + 'sequenceNumber' => { + message => q|This carousel item's sequenceNumber.|, + lastUpdated => 0, + context => q|Description of the sequenceNumber tmpl_var for the template help.| + } }; 1;