EnsEMBL::Web::Document::HTML Copyright
Included librariesPackage variablesGeneral documentationMethods
Toolbar
WebCvsRaw content
Package variables
No package variables defined.
Included modules
CGI qw ( escapeHTML )
EnsEMBL::Web::Document::HTML
Inherit
EnsEMBL::Web::Document::HTML
Synopsis
No synopsis!
Description
No description!
Methods
new
No description
Code
render
No description
Code
sitename
No description
Code
Methods description
None available.
Methods code
newdescriptionprevnextTop
sub new {
 return shift->SUPER::new( 'sitename' => '?' );
}
renderdescriptionprevnextTop
sub render {
  my @time = localtime();
  my $year = @time[5] + 1900;

  $_[0]->print( qq(
  <div class="twocol-left left unpadded">
     &copy; $year <span class="print_hide"><a href="http://www.sanger.ac.uk/" class="nowrap">WTSI</a> /
      <a href="http://www.ebi.ac.uk/" style="white-space:nowrap">EBI</a></span>
      <span class="screen_hide_inline">WTSI / EBI</span>
  </div>) 
  );
}

1;
}
sitenamedescriptionprevnextTop
sub sitename {
:lvalue { $_[0]{'sitename'};
}
General documentation
No general documentation available.