Difference between revisions of "Contribute: Plugins/ExportPluginsList"
(→Export Plugin Tutorial 2: Hello, Lists: Copied code down.) |
(→In More Detail) |
||
Line 51: | Line 51: | ||
== In More Detail == | == In More Detail == | ||
+ | === Housekeeping === | ||
<pre> | <pre> | ||
package EPrints::Plugin::Export::Foo::HelloList; | package EPrints::Plugin::Export::Foo::HelloList; | ||
+ | </pre> | ||
− | + | === Constructor === | |
− | + | BLURB | |
− | + | <pre> | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
$self->{name} = "Hello, List!"; | $self->{name} = "Hello, List!"; | ||
− | + | </pre> | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
+ | === Dealing With Lists === | ||
+ | <pre> | ||
sub output_list | sub output_list | ||
{ | { |
Revision as of 13:43, 9 August 2007
Contents
Export Plugin Tutorial 2: Hello, Lists
HelloList.pm
package EPrints::Plugin::Export::Foo::HelloList; @ISA = ("EPrints::Plugin::Export"); use strict; sub new { my ($class, %opts) = @_; my $self = $class->SUPER::new(%opts); $self->{name} = "Hello, List!"; $self->{accept} = [ 'dataobj/eprint', 'list/eprint' ]; $self->{visible} = "all"; $self->{suffix} = ".txt"; $self->{mimetype} = "text/plain; charset=utf-8"; return $self; } sub output_dataobj { my ($plugin, $dataobj) = @_; return $dataobj->get_id()."\t".$dataobj->get_value("title")."\n"; } sub output_list { my ($plugin, %opts) = @_; my $output = ""; $output .= "ID\tTitle\n\n"; foreach my $dataobj ($opts{"list"}->get_records) { $output .= $plugin->output_dataobj($dataobj, %opts); } return $output; } 1;
In More Detail
Housekeeping
package EPrints::Plugin::Export::Foo::HelloList;
Constructor
BLURB
$self->{name} = "Hello, List!";
Dealing With Lists
sub output_list { my ($plugin, %opts) = @_; my $output = ""; $output .= "ID\tTitle\n\n"; foreach my $dataobj ($opts{"list"}->get_records) { $output .= $plugin->output_dataobj($dataobj, %opts); } return $output; } 1;