diff --git a/lib/WebGUI/AssetCollateral/Sku/Ad/Ad.pm b/lib/WebGUI/AssetCollateral/Sku/Ad/Ad.pm index 0e40fcc80..13ecf4dd6 100644 --- a/lib/WebGUI/AssetCollateral/Sku/Ad/Ad.pm +++ b/lib/WebGUI/AssetCollateral/Sku/Ad/Ad.pm @@ -12,17 +12,29 @@ package WebGUI::AssetCollateral::Sku::Ad::Ad; http://www.plainblack.com info@plainblack.com ------------------------------------------------------------------- -=cut +=head1 NAME +Package WebGUI::AssetCollateral::Sku::Ad::Ad + +=head1 DESCRIPTION + +Package to manipulate collateral for WebGUI::Asset::Sku::Ad. + +=head1 METHODS + +This packages is a subclass of L. Please refer to that module +for a list of base methods that are available. + +=cut use strict; use base 'WebGUI::Crud'; #------------------------------------------------ -=head1 crud_definition +=head1 crud_definition ($session) -defines the field this crud will contain +Defines the fields this CRUD will contain. userID = the id of the user that purchased the ad transactionItemid = the id if the transaction item that completes this purchase @@ -78,4 +90,3 @@ sub crud_definition { } 1; - diff --git a/lib/WebGUI/AssetCollateral/Sku/ThingyRecord/Record.pm b/lib/WebGUI/AssetCollateral/Sku/ThingyRecord/Record.pm index 791fe3be0..94f7d42f9 100644 --- a/lib/WebGUI/AssetCollateral/Sku/ThingyRecord/Record.pm +++ b/lib/WebGUI/AssetCollateral/Sku/ThingyRecord/Record.pm @@ -1,9 +1,49 @@ package WebGUI::AssetCollateral::Sku::ThingyRecord::Record; +=head1 LEGAL + + ------------------------------------------------------------------- + WebGUI is Copyright 2001-2009 Plain Black Corporation. + ------------------------------------------------------------------- + Please read the legal notices (docs/legal.txt) and the license + (docs/license.txt) that came with this distribution before using + this software. + ------------------------------------------------------------------- + http://www.plainblack.com info@plainblack.com + ------------------------------------------------------------------- + +=cut + use strict; +=head1 NAME + +Package WebGUI::AssetCollateral::Sku::ThingyRecord::Record + +=head1 DESCRIPTION + +Package to manipulate collateral for WebGUI::Asset::Sku::ThingyRecord. + +There should be a list of data that this module uses and a description of how +they relate and function. + +=head1 METHODS + +This packages is a subclass of L. Please refer to that module +for a list of base methods that are available. + +=cut + use base 'WebGUI::Crud'; +#---------------------------------------------------------------- + +=head2 crud_definition ($session) + +Defintion subroutine to set up CRUD. + +=cut + sub crud_definition { my ($class, $session) = @_; my $definition = $class->SUPER::crud_definition($session);