Diverse bug and typo fixes to the recurring billing system. Also added some POD

This commit is contained in:
Martin Kamerbeek 2005-05-07 16:37:01 +00:00
parent 39a71a9b44
commit 1d6aeaf2d4
11 changed files with 341 additions and 20 deletions

View file

@ -36,6 +36,12 @@ These methods are available from this class:
#-------------------------------------------------------------------
=head2 available ( )
Returns a boolean indicating that the item is available or not.
=cut
sub available {
return 1;
}
@ -117,6 +123,14 @@ sub name {
return WebGUI::ErrorHandler::fatal('The name method of WebGUI::Commerce::Item must be overridden.');
}
#-------------------------------------------------------------------
=head2 needsShipping ( )
Return a boolean indicating whether the item needs to be shipped or not. Defaults to false.
=cut
sub needsShipping {
return 0;
}