webgui/lib/WebGUI/Help/AuthLDAP.pm
Colin Kuskie 9beeb854a4 Went through and validated all the template variables in all template
for the LDAP authentication module.  Common variables were referenced
from the main Auth module Help file.
2006-11-24 22:12:46 +00:00

210 lines
5.9 KiB
Perl

package WebGUI::Help::AuthLDAP;
our $HELP = {
'ldap connection add/edit' => {
title => 'LDAPLink_990',
body => 'ldap connection add/edit body',
fields => [
{
title => 'LDAPLink_992',
description => 'LDAPLink_992 description',
namespace => 'AuthLDAP',
},
{
title => 'LDAPLink_993',
description => 'LDAPLink_993 description',
namespace => 'AuthLDAP',
},
{
title => 'LDAPLink_994',
description => 'LDAPLink_994 description',
namespace => 'AuthLDAP',
},
{
title => 'LDAPLink_995',
description => 'LDAPLink_995 description',
namespace => 'AuthLDAP',
},
{
title => '9',
description => '9 description',
namespace => 'AuthLDAP',
},
{
title => '6',
description => '6 description',
namespace => 'AuthLDAP',
},
{
title => '7',
description => '7 description',
namespace => 'AuthLDAP',
},
{
title => '8',
description => '8 description',
namespace => 'AuthLDAP',
},
{
title => '868',
description => '868 description',
namespace => 'AuthLDAP',
},
{
title => '869',
description => '869 description',
namespace => 'AuthLDAP',
},
{
title => 'account template',
description => 'account template description',
namespace => 'AuthLDAP',
},
{
title => 'create account template',
description => 'create account template description',
namespace => 'AuthLDAP',
},
{
title => 'login template',
description => 'login template description',
namespace => 'AuthLDAP',
},
],
related => [ ],
},
'ldap authentication display account template' => {
title => 'display account template title',
body => 'display account template body',
isa => [
{
namespace => "Auth",
tag => "display account template"
},
],
variables => [
{
'name' => 'account.form.karma'
},
{
'name' => 'account.form.karma.label'
},
{
'name' => 'account.options'
},
{
'name' => 'displayTitle'
},
{
'name' => 'account.message'
}
],
fields => [
],
related => [
{
tag => 'ldap authentication anonymous registration template',
namespace => 'AuthLDAP'
},
{
tag => 'ldap authentication login template',
namespace => 'AuthLDAP'
},
]
},
'ldap authentication login template' => {
title => 'auth login template title',
body => 'auth login template body',
isa => [
{
namespace => "Auth",
tag => "login template"
},
],
variables => [
{
'name' => 'login.message'
},
],
fields => [
],
related => [
{
tag => 'ldap authentication anonymous registration template',
namespace => 'AuthLDAP'
},
{
tag => 'ldap authentication display account template',
namespace => 'AuthLDAP'
},
{
tag => 'wobject template',
namespace => 'Asset_Wobject'
},
]
},
'ldap authentication anonymous registration template' => { ##createAccount
title => 'anon reg template title',
body => 'anon reg template body',
isa => [
{
namespace => "Auth",
tag => "anonymous registration template"
},
],
fields => [
],
variables => [
{
'name' => 'create.message'
},
{
'name' => 'create.form.ldapConnection'
},
{
'name' => 'create.form.ldapConnection.label'
},
{
'name' => 'create.form.ldapId'
},
{
'name' => 'create.form.ldapId.label'
},
{
'name' => 'create.form.password'
},
{
'name' => 'create.form.password.label'
}
],
related => [
{
tag => 'ldap authentication display account template',
namespace => 'AuthLDAP'
},
{
tag => 'ldap authentication login template',
namespace => 'AuthLDAP'
},
]
},
'ldap deactivate account template' => {
title => 'deactivate account template title',
body => 'deactivate account template body',
isa => [
{
namespace => "Auth",
tag => "deactivate account template"
},
],
variables => [ ],
fields => [ ],
related => [ ],
},
};
1;