merge to 10219
This commit is contained in:
parent
ae28bf79c8
commit
4c1307e3d0
194 changed files with 8203 additions and 2134 deletions
29
lib/WebGUI/Help/Asset_Carousel.pm
Normal file
29
lib/WebGUI/Help/Asset_Carousel.pm
Normal file
|
|
@ -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;
|
||||
|
||||
|
|
@ -53,7 +53,7 @@ our $HELP = {
|
|||
{ 'name' => 'page.isChild' },
|
||||
{ 'name' => 'page.isParent' },
|
||||
{ 'name' => 'page.isCurrent' },
|
||||
{ 'name' => 'page.isDescendent' },
|
||||
{ 'name' => 'page.isDescendant' },
|
||||
{ 'name' => 'page.isAncestor' },
|
||||
{ 'name' => 'page.inBranchRoot' },
|
||||
{ 'name' => 'page.isSibling' },
|
||||
|
|
|
|||
|
|
@ -136,11 +136,7 @@ our $HELP = {
|
|||
private => 1,
|
||||
title => 'post asset variables title',
|
||||
body => '',
|
||||
isa => [
|
||||
{ tag => 'asset template asset variables',
|
||||
namespace => 'Asset'
|
||||
},
|
||||
],
|
||||
isa => [ ],
|
||||
variables => [
|
||||
{ 'name' => 'storageId' },
|
||||
{ 'name' => 'threadId' },
|
||||
|
|
|
|||
|
|
@ -1,53 +0,0 @@
|
|||
package WebGUI::Help::Asset_RSSFromParent;
|
||||
use strict;
|
||||
|
||||
our $HELP = {
|
||||
'rss from parent' => {
|
||||
title => 'rss from parent title',
|
||||
body => 'rss from parent body',
|
||||
|
||||
# use the following to inherit stuff other help entries
|
||||
isa => [
|
||||
{ tag => 'template variables',
|
||||
namespace => 'Asset_Template'
|
||||
},
|
||||
],
|
||||
fields => [ #This array is used to list hover help for form fields.
|
||||
],
|
||||
variables => [
|
||||
{ 'name' => 'title',
|
||||
'description' => 'title.parent'
|
||||
},
|
||||
{ 'name' => 'link',
|
||||
'description' => 'title.parent'
|
||||
},
|
||||
{ 'name' => 'description',
|
||||
'description' => 'description.parent'
|
||||
},
|
||||
{ 'name' => 'generator' },
|
||||
{ 'name' => 'lastBuildDate' },
|
||||
{ 'name' => 'webMaster' },
|
||||
{ 'name' => 'docs' },
|
||||
{ 'name' => 'item_loop',
|
||||
variables => [
|
||||
{ 'name' => 'title',
|
||||
'description' => 'title.item'
|
||||
},
|
||||
{ 'name' => 'link',
|
||||
'description' => 'title.item'
|
||||
},
|
||||
{ 'name' => 'description',
|
||||
'description' => 'description.item'
|
||||
},
|
||||
{ 'name' => 'guid' },
|
||||
{ 'name' => 'pubDate' },
|
||||
]
|
||||
},
|
||||
],
|
||||
related => [ ##This lists other help articles that are related to this one
|
||||
],
|
||||
},
|
||||
|
||||
};
|
||||
|
||||
1; ##All perl modules must return true
|
||||
|
|
@ -21,8 +21,11 @@ our $HELP = {
|
|||
variables => [
|
||||
{ name => "shelves" , required=>1},
|
||||
{ name => "products" , required=>1, variables => [
|
||||
{ name => "url",
|
||||
description => 'product_url', },
|
||||
{ name => "thumbnailUrl" },
|
||||
{ name => "price" },
|
||||
{ name => "addToCartForm" },
|
||||
],
|
||||
},
|
||||
{ name => "templateId", description=>"shelf template help" },
|
||||
|
|
|
|||
|
|
@ -26,6 +26,8 @@ our $HELP = {
|
|||
{ 'name' => 'thing_deleteUrl' },
|
||||
{ 'name' => 'thing_searchUrl' },
|
||||
{ 'name' => 'thing_addUrl' },
|
||||
{ 'name' => 'thing_copyUrl' },
|
||||
{ 'name' => 'thing_copyIcon' },
|
||||
]
|
||||
},
|
||||
],
|
||||
|
|
|
|||
|
|
@ -163,6 +163,28 @@ our $HELP = {
|
|||
related => [],
|
||||
},
|
||||
|
||||
'webgui welcome message template' => {
|
||||
title => 'welcome message template title',
|
||||
body => '',
|
||||
variables => [
|
||||
{ 'name' => 'welcomeMessage' },
|
||||
{ 'name' => 'newUser_username' },
|
||||
{ 'name' => 'newUser_password' },
|
||||
],
|
||||
fields => [],
|
||||
related => []
|
||||
},
|
||||
|
||||
'account activation template' => {
|
||||
title => 'account activation template title',
|
||||
body => '',
|
||||
variables => [
|
||||
{ 'name' => 'newUser_username' },
|
||||
{ 'name' => 'activationUrl' },
|
||||
],
|
||||
fields => [],
|
||||
related => []
|
||||
},
|
||||
};
|
||||
|
||||
1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue