diff --git a/lib/WebGUI/Help/Asset_Matrix.pm b/lib/WebGUI/Help/Asset_Matrix.pm index 15a3d57b3..36759e3ed 100644 --- a/lib/WebGUI/Help/Asset_Matrix.pm +++ b/lib/WebGUI/Help/Asset_Matrix.pm @@ -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' }, { diff --git a/lib/WebGUI/Help/_help.skeleton b/lib/WebGUI/Help/_help.skeleton index d25e03f77..eaaacdc75 100644 --- a/lib/WebGUI/Help/_help.skeleton +++ b/lib/WebGUI/Help/_help.skeleton @@ -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