rename add/edit to matrix add/edit so automatic listing of Assets works

This commit is contained in:
Colin Kuskie 2005-11-18 21:57:03 +00:00
parent 6a9544c3e0
commit 9a368956e7
2 changed files with 10 additions and 6 deletions

View file

@ -1,7 +1,7 @@
package WebGUI::Help::Asset_Matrix;
our $HELP = {
'add/edit' => {
'matrix add/edit' => {
title => 'add/edit help title',
body => 'add/edit help body',
related => [
@ -32,7 +32,7 @@ our $HELP = {
body => 'search template help body',
related => [
{
tag => 'add/edit',
tag => 'matrix add/edit',
namespace => 'Asset_Matrix'
},
{
@ -58,7 +58,7 @@ our $HELP = {
body => 'compare template help body',
related => [
{
tag => 'add/edit',
tag => 'matrix add/edit',
namespace => 'Asset_Matrix'
},
{
@ -84,7 +84,7 @@ our $HELP = {
body => 'ratings detail template help body',
related => [
{
tag => 'add/edit',
tag => 'matrix add/edit',
namespace => 'Asset_Matrix'
},
{
@ -110,7 +110,7 @@ our $HELP = {
body => 'matrix template help body',
related => [
{
tag => 'add/edit',
tag => 'matrix add/edit',
namespace => 'Asset_Matrix'
},
{
@ -136,7 +136,7 @@ our $HELP = {
body => 'detail template help body',
related => [
{
tag => 'add/edit',
tag => 'matrix add/edit',
namespace => 'Asset_Matrix'
},
{

View file

@ -4,6 +4,9 @@ package WebGUI::Help::_Help; ## Be sure to change the package name to match your
our $HELP = { ##hashref of hashes
'help article' => { #name of article, used as a reference by other articles
#note, all Assets should have an "assetName add/edit" entry if
#you want them automatically listed in Asset, List of Available
title => 'help article title', #The title and body are looked up in the
body => 'help article title', #i18n file of the same name
fields => [ #This array is used to list hover help for form fields.
@ -25,6 +28,7 @@ our $HELP = { ##hashref of hashes
},
],
},
};
1; ##All perl modules must return true