Raw content of EnsEMBL::Web::Document::HTML::FooterLinks
package EnsEMBL::Web::Document::HTML::FooterLinks;
### Generates release info for the footer
use strict;
use EnsEMBL::Web::Document::HTML;
use EnsEMBL::Web::RegObj;
our @ISA = qw(EnsEMBL::Web::Document::HTML);
sub render {
my $sd = $ENSEMBL_WEB_REGISTRY->species_defs;
$_[0]->printf(
q(
%s release %d - %s
),
$sd->ENSEMBL_SITE_NAME, $sd->ENSEMBL_VERSION, $sd->ENSEMBL_RELEASE_DATE
);
}
1;