Remove leftover definition sub stubs.

This commit is contained in:
Colin Kuskie 2010-03-09 13:51:07 -08:00
parent bc71165a16
commit ffb7945c34
5 changed files with 0 additions and 109 deletions

View file

@ -66,38 +66,6 @@ These methods are available from this class
=cut
#-------------------------------------------------------------------
=head2 definition ( session, definition )
Define the properties of all GalleryFile assets.
=cut
sub definition {
my $class = shift;
my $session = shift;
my $definition = shift;
my $i18n = WebGUI::International->new($session,'Asset_Photo');
tie my %properties, 'Tie::IxHash', (
);
# UserDefined Fields
for my $i (1 .. 5) {
$properties{"userDefined".$i} = {
defaultValue => undef,
};
}
push @{$definition}, {
className => 'WebGUI::Asset::File::GalleryFile',
properties => \%properties,
};
return $class->SUPER::definition($session, $definition);
}
#----------------------------------------------------------------------------
=head2 appendTemplateVarsCommentForm ( var [, comment ] )