Difference between revisions of "Contribute: Plugins/ExportPluginsExcel"
m (→Excel.pm) |
m (→In More Detail) |
||
Line 80: | Line 80: | ||
use strict; | use strict; | ||
use Spreadsheet::WriteExcel; | use Spreadsheet::WriteExcel; | ||
− | |||
− | |||
sub new | sub new | ||
Line 103: | Line 101: | ||
my $output; | my $output; | ||
− | my $FH | + | open(my $FH, '>', \$output); |
if (defined $opts{"fh"}) | if (defined $opts{"fh"}) |
Revision as of 12:00, 30 August 2007
Export Plugin Tutorial 4: Excel
Excel.pm
package EPrints::Plugin::Export::MyPlugins::Excel; @ISA = ("EPrints::Plugin::Export"); use strict; use Spreadsheet::WriteExcel; sub new { my ($class, %opts) = @_; my $self = $class->SUPER::new(%opts); $self->{name} = "Excel"; $self->{accept} = ['list/eprint']; $self->{visible} = "all"; $self->{suffix} = ".xls"; $self->{mimetype} = "application/vnd.ms-excel"; return $self; } sub output_list { my ($plugin, %opts) = @_; my $workbook; my $output; open(my $FH, '>', \$output); if (defined $opts{"fh"}) { $workbook = Spreadsheet::WriteExcel->new(\*{$opts{"fh"}}); die("Unable to create spreadsheet: $!")unless defined $workbook; } else { $workbook = Spreadsheet::WriteExcel->new($FH); die("Unable to create spreadsheet: $!")unless defined $workbook; } foreach my $dataobj ($opts{"list"}->get_records) { my $worksheet = $workbook->add_worksheet(); my $i = 0; foreach my $field ($dataobj->get_dataset->get_fields) { my $name = $field->get_name; next unless $dataobj->exists_and_set($name); $worksheet->write($i, 0, $name); $worksheet->write_string($i, 1, $dataobj->get_value($name)); $i++; } } $workbook->close; if (defined $opts{"fh"}) { return undef; } return $output; } 1;
In More Detail
package EPrints::Plugin::Export::MyPlugins::Excel; @ISA = ("EPrints::Plugin::Export"); use strict; use Spreadsheet::WriteExcel; sub new { my ($class, %opts) = @_; my $self = $class->SUPER::new(%opts); $self->{name} = "Excel"; $self->{accept} = ['list/eprint']; $self->{visible} = "all"; $self->{suffix} = ".xls"; $self->{mimetype} = "application/vnd.ms-excel"; return $self; } sub output_list { my ($plugin, %opts) = @_; my $workbook; my $output; open(my $FH, '>', \$output); if (defined $opts{"fh"}) { $workbook = Spreadsheet::WriteExcel->new(\*{$opts{"fh"}}); die("Unable to create spreadsheet: $!")unless defined $workbook; } else { $workbook = Spreadsheet::WriteExcel->new($FH); die("Unable to create spreadsheet: $!")unless defined $workbook; } foreach my $dataobj ($opts{"list"}->get_records) { my $worksheet = $workbook->add_worksheet(); my $i = 0; foreach my $field ($dataobj->get_dataset->get_fields) { my $name = $field->get_name; next unless $dataobj->exists_and_set($name); $worksheet->write($i, 0, $name); $worksheet->write_string($i, 1, $dataobj->get_value($name)); $i++; } } $workbook->close; if (defined $opts{"fh"}) { return undef; } return $output; } 1;
Testing Your Plugin
Restart your webserver and test the plugin as in the previous tutorial.