[ 1441488 ] Sort Order of Profile Fields in Form "Create New Account"

fixed a few syntax things in Item.pm
This commit is contained in:
Matthew Wilson 2006-03-10 19:00:05 +00:00
parent 27c2d07443
commit 279233b367
4 changed files with 17 additions and 6 deletions

View file

@ -55,6 +55,7 @@ This returns the description of the item. This must be implemented by an item pl
=cut
sub description {
my $self = shift;
return $self->session->errorHandler->fatal('The description method of WebGUI::Commerce::Item must be overridden.');
}
@ -95,6 +96,7 @@ by an item plugin.
=cut
sub id {
my $self = shift;
return $self->session->errorHandler->fatal('The id method of WebGUI::Commerce::Item must be overridden.');
}
@ -120,6 +122,7 @@ Returns the name of the item. This must be implemented by an item plugin.
=cut
sub name {
my $self = shift;
return $self->session->errorHandler->fatal('The name method of WebGUI::Commerce::Item must be overridden.');
}
@ -183,6 +186,7 @@ term price. This must be implemented by an item plugin.
=cut
sub price {
my $self = shift;
return $self->session->errorHandler->fatalError('The price method of WebGUI::Commerce::Item must be overridden.');
}
@ -195,6 +199,7 @@ Returns the type (namespace) of the item.
=cut
sub type {
my $self = shift;
return $self->session->errorHandler->fatalError('The type method of WebGUI::Commerce::Item must be overridden.');
}