Commerce, Product, Subscription, and AuthWebGUI help pruning
This commit is contained in:
parent
40a49bc913
commit
b11b36aa39
8 changed files with 21 additions and 553 deletions
|
|
@ -3,7 +3,7 @@ package WebGUI::Help::AuthWebGUI;
|
|||
our $HELP = {
|
||||
'webgui authentication display account template' => {
|
||||
title => 'display account template title',
|
||||
body => 'display account template body',
|
||||
body => '',
|
||||
isa => [
|
||||
{
|
||||
namespace => "Auth",
|
||||
|
|
@ -44,9 +44,10 @@ our $HELP = {
|
|||
related => [
|
||||
]
|
||||
},
|
||||
|
||||
'webgui authentication login template' => {
|
||||
title => 'login template title',
|
||||
body => 'login template body',
|
||||
body => '',
|
||||
isa => [
|
||||
{
|
||||
namespace => "Auth",
|
||||
|
|
@ -72,9 +73,10 @@ our $HELP = {
|
|||
related => [
|
||||
]
|
||||
},
|
||||
|
||||
'webgui authentication anonymous registration template' => {
|
||||
title => 'anon reg template title',
|
||||
body => 'anon reg template body',
|
||||
body => '',
|
||||
fields => [
|
||||
],
|
||||
isa => [
|
||||
|
|
@ -121,9 +123,10 @@ our $HELP = {
|
|||
related => [
|
||||
]
|
||||
},
|
||||
|
||||
'webgui authentication password recovery template' => {
|
||||
title => 'recovery template title',
|
||||
body => 'recovery template body',
|
||||
body => '',
|
||||
variables => [
|
||||
{
|
||||
'name' => 'title',
|
||||
|
|
@ -200,9 +203,10 @@ our $HELP = {
|
|||
related => [
|
||||
]
|
||||
},
|
||||
|
||||
'webgui authentication password expiration template' => {
|
||||
title => 'expired template title',
|
||||
body => 'expired template body',
|
||||
body => '',
|
||||
variables => [
|
||||
{
|
||||
'name' => 'expired.form.header'
|
||||
|
|
@ -246,9 +250,10 @@ our $HELP = {
|
|||
related => [
|
||||
]
|
||||
},
|
||||
|
||||
'webgui deactivate account template' => {
|
||||
title => 'deactivate account template title',
|
||||
body => 'deactivate account template body',
|
||||
body => '',
|
||||
isa => [
|
||||
{
|
||||
namespace => "Auth",
|
||||
|
|
@ -259,6 +264,7 @@ our $HELP = {
|
|||
fields => [ ],
|
||||
related => [ ],
|
||||
},
|
||||
|
||||
};
|
||||
|
||||
1;
|
||||
|
|
|
|||
|
|
@ -1,77 +1,10 @@
|
|||
package WebGUI::Help::Commerce;
|
||||
|
||||
our $HELP = {
|
||||
'commerce manage' => {
|
||||
title => 'help manage commerce title',
|
||||
body => 'help manage commerce body',
|
||||
fields => [
|
||||
{
|
||||
title => 'confirm checkout template',
|
||||
description => 'confirm checkout template description',
|
||||
namespace => 'Commerce',
|
||||
},
|
||||
{
|
||||
title => 'transaction error template',
|
||||
description => 'transaction error template description',
|
||||
namespace => 'Commerce',
|
||||
},
|
||||
{
|
||||
title => 'checkout canceled template',
|
||||
description => 'checkout canceled template description',
|
||||
namespace => 'Commerce',
|
||||
},
|
||||
{
|
||||
title => 'checkout select payment template',
|
||||
description => 'checkout select payment template description',
|
||||
namespace => 'Commerce',
|
||||
},
|
||||
{
|
||||
title => 'checkout select shipping template',
|
||||
description => 'checkout select shipping template description',
|
||||
namespace => 'Commerce',
|
||||
},
|
||||
{
|
||||
title => 'view shopping cart template',
|
||||
description => 'view shopping cart template description',
|
||||
namespace => 'Commerce',
|
||||
},
|
||||
{
|
||||
title => 'daily report email',
|
||||
description => 'daily report email description',
|
||||
namespace => 'Commerce',
|
||||
},
|
||||
{
|
||||
title => 'payment plugin',
|
||||
description => 'payment plugin description',
|
||||
namespace => 'Commerce',
|
||||
},
|
||||
{
|
||||
title => 'shipping plugin label',
|
||||
description => 'shipping plugin label description',
|
||||
namespace => 'Commerce',
|
||||
},
|
||||
{
|
||||
title => 'enable sales tax',
|
||||
description => 'enable sales tax description',
|
||||
namespace => 'Commerce',
|
||||
},
|
||||
],
|
||||
related => [
|
||||
]
|
||||
},
|
||||
|
||||
'list pending transactions' => {
|
||||
title => 'list pending transactions',
|
||||
body => 'help manage pending transactions body',
|
||||
fields => [
|
||||
],
|
||||
related => [
|
||||
]
|
||||
},
|
||||
|
||||
'cancel template' => {
|
||||
title => 'help cancel checkout template title',
|
||||
body => 'help cancel checkout template body',
|
||||
body => '',
|
||||
variables => [
|
||||
{
|
||||
'name' => 'message'
|
||||
|
|
@ -89,7 +22,7 @@ our $HELP = {
|
|||
|
||||
'confirm template' => {
|
||||
title => 'help checkout confirm template title',
|
||||
body => 'help checkout confirm template body',
|
||||
body => '',
|
||||
fields => [
|
||||
],
|
||||
variables => [
|
||||
|
|
@ -148,7 +81,7 @@ our $HELP = {
|
|||
|
||||
'error template' => {
|
||||
title => 'help checkout error template title',
|
||||
body => 'help checkout error template body',
|
||||
body => '',
|
||||
fields => [
|
||||
],
|
||||
variables => [
|
||||
|
|
@ -186,7 +119,7 @@ our $HELP = {
|
|||
|
||||
'select payment gateway template' => {
|
||||
title => 'help select payment template title',
|
||||
body => 'help select payment template body',
|
||||
body => '',
|
||||
fields => [
|
||||
],
|
||||
variables => [
|
||||
|
|
|
|||
|
|
@ -65,10 +65,6 @@ our $HELP = {
|
|||
fields => [
|
||||
],
|
||||
related => [
|
||||
{
|
||||
tag => 'manage product',
|
||||
namespace => 'ProductManager'
|
||||
},
|
||||
]
|
||||
},
|
||||
|
||||
|
|
|
|||
|
|
@ -1,149 +1,7 @@
|
|||
package WebGUI::Help::ProductManager;
|
||||
|
||||
our $HELP = {
|
||||
'list products' => {
|
||||
title => 'help list products title',
|
||||
body => 'help list products body',
|
||||
fields => [
|
||||
],
|
||||
related => [
|
||||
]
|
||||
},
|
||||
|
||||
'manage product' => {
|
||||
title => 'help manage product title',
|
||||
body => 'help manage product body',
|
||||
fields => [
|
||||
],
|
||||
related => [
|
||||
]
|
||||
},
|
||||
|
||||
'edit product' => {
|
||||
title => 'help edit product title',
|
||||
body => 'help edit product body',
|
||||
fields => [
|
||||
{
|
||||
title => 'title',
|
||||
description => 'title description',
|
||||
namespace => 'ProductManager',
|
||||
},
|
||||
{
|
||||
title => 'description',
|
||||
description => 'description description',
|
||||
namespace => 'ProductManager',
|
||||
},
|
||||
{
|
||||
title => 'price',
|
||||
description => 'price description',
|
||||
namespace => 'ProductManager',
|
||||
},
|
||||
{
|
||||
title => 'weight',
|
||||
description => 'weight description',
|
||||
namespace => 'ProductManager',
|
||||
},
|
||||
{
|
||||
title => 'sku',
|
||||
description => 'sku description',
|
||||
namespace => 'ProductManager',
|
||||
},
|
||||
{
|
||||
title => 'template',
|
||||
description => 'template description',
|
||||
namespace => 'ProductManager',
|
||||
},
|
||||
{
|
||||
title => 'sku template',
|
||||
description => 'sku template description',
|
||||
namespace => 'ProductManager',
|
||||
},
|
||||
],
|
||||
related => [
|
||||
{
|
||||
tag => 'template language',
|
||||
namespace => 'Asset_Template'
|
||||
},
|
||||
]
|
||||
},
|
||||
|
||||
'edit parameter' => {
|
||||
title => 'help edit parameter title',
|
||||
body => 'help edit parameter body',
|
||||
fields => [
|
||||
{
|
||||
title => 'edit parameter name',
|
||||
description => 'edit parameter name description',
|
||||
namespace => 'ProductManager',
|
||||
},
|
||||
],
|
||||
related => [
|
||||
]
|
||||
},
|
||||
'edit option' => {
|
||||
title => 'help edit option title',
|
||||
body => 'help edit option body',
|
||||
fields => [
|
||||
{
|
||||
title => 'edit option value',
|
||||
description => 'edit option value description',
|
||||
namespace => 'ProductManager',
|
||||
},
|
||||
{
|
||||
title => 'edit option price modifier',
|
||||
description => 'edit option price modifier description',
|
||||
namespace => 'ProductManager',
|
||||
},
|
||||
{
|
||||
title => 'edit option weight modifier',
|
||||
description => 'edit option weight modifier description',
|
||||
namespace => 'ProductManager',
|
||||
},
|
||||
{
|
||||
title => 'edit option sku modifier',
|
||||
description => 'edit option sku modifier description',
|
||||
namespace => 'ProductManager',
|
||||
},
|
||||
],
|
||||
related => [
|
||||
]
|
||||
},
|
||||
'list variants' => {
|
||||
title => 'help list variants title',
|
||||
body => 'help list variants body',
|
||||
fields => [
|
||||
],
|
||||
related => [
|
||||
]
|
||||
},
|
||||
'edit variant' => {
|
||||
title => 'help edit variant title',
|
||||
body => 'help edit variant body',
|
||||
fields => [
|
||||
{
|
||||
title => 'price override',
|
||||
description => 'price override description',
|
||||
namespace => 'ProductManager',
|
||||
},
|
||||
{
|
||||
title => 'weight override',
|
||||
description => 'weight override description',
|
||||
namespace => 'ProductManager',
|
||||
},
|
||||
{
|
||||
title => 'sku override',
|
||||
description => 'sku override description',
|
||||
namespace => 'ProductManager',
|
||||
},
|
||||
{
|
||||
title => 'available',
|
||||
description => 'available description',
|
||||
namespace => 'ProductManager',
|
||||
},
|
||||
],
|
||||
related => [
|
||||
]
|
||||
},
|
||||
'edit sku template' => {
|
||||
title => 'help edit sku template title',
|
||||
body => 'help edit sku template body',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue