Added edit registratnt docs for EMS

Added method to acWrapper inside EMS so that Help can be externally set and
not overwritten.
Added getHelp method to AdminConsole so the details of seeing if help has been
set are hidden.
This commit is contained in:
Colin Kuskie 2006-05-10 22:58:33 +00:00
parent 648d782b49
commit a1a920cfea
4 changed files with 82 additions and 8 deletions

View file

@ -493,6 +493,19 @@ sub setHelp {
#-------------------------------------------------------------------
=head2 getHelp ( )
Returns the help topic, if any, that has been set for this adminConsole.
=cut
sub getHelp {
my $self = shift;
return (exists $self->{_helpUrl} ? $self->{_helpUrl} : '');
}
#-------------------------------------------------------------------
sub session {
my $self = shift;
return $self->{_session};