Merge pull request #4317 from solgenomics/solgwas-fix-filehandle
[sgn.git] / mason / homepage / what_is_sgn.mas
blob9faf5c5ad4e53426f09ae04602549bb83811b8ab
2 <%doc>
4 =head1 NAME
6 /homepage/what_is_sgn.mas - shows a "More about SGN" collapser that the user can open with a click to reveal more information about SGN.
8 =head1 DESCRIPTION
10 takes a what parameter. Either 'textbox' or 'link'. Will result in different rendering.
12 =head1 AUTHOR
14 Lukas Mueller
16 =cut 
18 </%doc>
21 <%args>
22 $what
23 </%args>
25 <& /util/import_javascript.mas, classes=>["CXGN.Effects"] &>
27 <%perl>
29 use CXGN::Page::Widgets qw/collapser/;
31 my ($what_is_link, $what_is_content) = collapser({
32     id         => "what_is_sgn",
33     linktext   => '<span class="boxheading" style="border:0">About SGN</span>',
34     collapsed  => 1,
35     linkstyle  => "font-size:0.86em;white-space:nowrap",
36     alt_target => "",
37     alt_href   => "/about/index.pl",
38     content    => CXGN::Tools::File::read_commented_file( $c->path_to('documents','what_is.txt') ),
39 });
41 </%perl>
43 % if ($what eq "textbox") { 
45 <div class="boxbgcolor1">
46   <div class="boxheading"><% $what_is_link %></div>
47 </div>
48 <% $what_is_content %>
50 % } elsif($what eq "link")  { 
52  <% $what_is_link %>
54 %} else { die "don't know what $what is." }