package EPrints::Plugin::Screen::EPrint::Box::Abstract_Box_Ex; @ISA = ( 'EPrints::Plugin::Screen::EPrint::Box' ); use strict; sub render { my( $self ) = @_; my $repository = $self->{repository}; my $eprint = $self->{processor}->{eprint}; my $frag = $repository->make_doc_fragment; $frag->appendChild($repository->make_text("HELLO")); return $frag; }