Committing the new Ecommerce system

This commit is contained in:
Martin Kamerbeek 2004-11-29 15:31:22 +00:00
parent 1847a18ec7
commit 5676bf9585
16 changed files with 2576 additions and 0 deletions

View file

@ -0,0 +1,64 @@
package WebGUI::Help::Commerce;
our $HELP = {
'commerce manage' => {
title => 'help manage commerce title',
body => 'help manage commerce body',
related => [
]
},
'list pending transactions' => {
title => 'help manage pending transactions title',
body => 'help manage pending transactions body',
related => [
]
},
'cancel template' => {
title => 'help cancel checkout template title',
body => 'help cancel checkout template body',
related => [
{
tag => 'template language',
namespace => 'WebGUI'
},
{
tag => 'templates manage',
namespace => 'WebGUI'
}
]
},
'confirm template' => {
title => 'help checkout confirm template title',
body => 'help checkout confirm template body',
related => [
{
tag => 'template language',
namespace => 'WebGUI'
},
{
tag => 'templates manage',
namespace => 'WebGUI'
}
],
},
'error template' => {
title => 'help checkout error template title',
body => 'help checkout error template body',
related => [
{
tag => 'template language',
namespace => 'WebGUI'
},
{
tag => 'templates manage',
namespace => 'WebGUI'
}
]
},
};
1;

View file

@ -0,0 +1,91 @@
package WebGUI::Help::Subscription;
our $HELP = {
'subscription add/edit' => {
title => 'help edit subscription title',
body => 'help edit subscription body',
related => [
{
tag => 'subscription manage',
namespace => 'Subscription'
},
]
},
'subscription manage' => {
title => 'help manage subscriptions title',
body => 'help manage subscriptions body',
related => [
{
tag => 'subscription add/edit',
namespace => 'Subscription'
},
{
tag => 'subscription codes manage',
namespace => 'Subscription'
},
]
},
'subscription codes manage' => {
title => 'help manage subscription codes title',
body => 'help manage subscription codes body',
related => [
{
tag => 'create batch',
namespace => 'Subscription'
},
{
tag => 'subscription manage',
namespace => 'Subscription'
},
]
},
'create batch' => {
title => 'help create batch title',
body => 'help create batch body',
related => [
{
tag => 'subscription codes manage',
namespace => 'Subscription'
},
{
tag => 'manage batch',
namespace => 'Subscription'
},
]
},
'manage batch' => {
title => 'help manage batch title',
body => 'help manage batch body',
related => [
{
tag => 'create batch',
namespace => 'Subscription'
},
{
tag => 'subscription codes manage',
namespace => 'Subscription'
},
]
},
'redeem code' => {
title => 'help redeem code template title',
body => 'help redeem code template body',
related => [
{
tag => 'template language',
namespace => 'WebGUI'
},
{
tag => 'templates manage',
namespace => 'WebGUI'
},
]
};
1;

View file

@ -0,0 +1,22 @@
package WebGUI::Help::TransactionLog;
our $HELP = {
'purchase history' => {
title => 'help purchase history template title',
body => 'help purchase history template body',
related => [
{
tag => 'template language',
namespace => 'WebGUI'
},
{
tag => 'templates manage',
namespace => 'WebGUI'
}
]
},
};
1;