package WebGUI::Form::File;
=head1 LEGAL
-------------------------------------------------------------------
WebGUI is Copyright 2001-2008 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;
use base 'WebGUI::Form::Control';
use WebGUI::International;
use WebGUI::Storage;
use WebGUI::Form::Hidden;
=head1 NAME
Package WebGUI::Form::File
=head1 DESCRIPTION
Creates a javascript driven file upload control for files.
=head1 SEE ALSO
This is a subclass of WebGUI::Form::Control.
=head1 METHODS
The following methods are specifically available from this class. Check the superclass for additional methods.
=cut
#-------------------------------------------------------------------
=head2 definition ( [ additionalTerms ] )
See the super class for additional details.
=head3 additionalTerms
The following additional parameters have been added via this sub class.
=head4 name
If no name is specified a default name of "file" will be used.
=head4 maxAttachments
How many attachments will be allowed to be uploaded. However, the file form
only supports displaying/deleting 1 attachment.
=head4 deleteFileUrl
A url that will get a filename appended to it and then links to delete the files will be generated automatically.
=head4 size
Though not all browsers support it, this will attempt to set the size (or width) of the browse for file field.
=cut
sub definition {
my $class = shift;
my $session = shift;
my $definition = shift || [];
push(@{$definition}, {
name=>{
defaultValue=>"file"
},
maxAttachments=>{
defaultValue=>1
},
deleteFileUrl=>{
defaultValue=>undef
},
size=>{
defaultValue=>40
},
});
return $class->SUPER::definition($session, $definition);
}
#-------------------------------------------------------------------
=head2 getDatabaseFieldType ( )
Returns "VARCHAR(22) BINARY".
=cut
sub getDatabaseFieldType {
return "VARCHAR(22) BINARY";
}
#-------------------------------------------------------------------
=head2 getName ( session )
Returns the human readable name of this control.
=cut
sub getName {
my ($self, $session) = @_;
return WebGUI::International->new($session, 'WebGUI')->get('file');
}
#-------------------------------------------------------------------
=head2 getFilePreview ( storage )
Returns a preview of the files attached to this form control.
=head3 storage
A WebGUI::Storage object.
=cut
sub getFilePreview {
my $self = shift;
my $storage = shift;
my $i18n = WebGUI::International->new($self->session);
my $preview = "";
foreach my $file (@{$storage->getFiles}) {
if ($self->get("deleteFileUrl")) {
$preview .= '