package EPrints::Plugin::Screen::REPOSITORYID::Overview; our @ISA = ( 'EPrints::Plugin::Screen::EPrint' ); use strict; sub new { my( $class, %params ) = @_; my $self = $class->SUPER::new(%params); # Note no registration - plugin must be accessed directly return $self; } sub render { my( $self ) = @_; my $session = $self->{session}; # Get eprint my $eprint = $self->{processor}->{eprint}; # Create empty document, and add eprint title my $html = $session->make_doc_fragment; $html->appendChild( $eprint->render_value( "title" ) ); return $html; } 1;