fices a bug in checking for existing organism with genbank taxon id
[sgn.git] / mason / page / info_section.mas
blob38fb9ff4cba257d6fafdae18e0d2996c9ad8fac1
1 <%doc>
3 =head1 NAME
5 info_section.mas
7 =head1 SYNOPSIS
9  <&| info_section.mas, title => 'Search Results',
10                       subtitle      => '3 matches',
11                       empty_message => 'No matching monkeys found',
12                       is_subsection => 0 
13   &>
15   HTML and Mason contents of the info section,
16   as much stuff as you want.
18  </&>
22 =head1 DESCRIPTION
24 Description: Displays a paragraph with a title bar and provides a way to collapse the content. A mason wrapper around CXGN::Page::FormattingHelpers::info_section_html.
26 =head1 ARGUMENTS
28 =over 14
30 =item $title 
32 the title to be displayed in the title bar. Required.
34 =item $subtitle 
36 a subtitle that goes next to the title. Optional.
38 =item $empty_message 
40 The message that should appear when $contents is empty.
42 =item $is_empty
44 if true, forces this info_section to be drawn in the empty state, content will not be shown.
46 =item $collapsible 
48 boolean - default false, a true value makes the section collapsible (with javascript)
50 =item $collapsed
52 boolean - a true value will draw the section in the collapsed state
54 =item $is_subsection
56 boolean - a true value will draw the section as a subsection, with slighly altered title bar and text rendering.
58 =item $align 
60 not sure what that does.
62 =back
64 =head1 SEE ALSO
66 L<CXGN::Page::FormattingHelpers>
68 =head1 AUTHOR
70 Lukas Mueller, based on the Perl code from Rob Buels.
73 =cut
75 </%doc>
77 <%args>
78         $title
79         $subtitle       => ""
80         $empty_message  => ""
81         $collapsible    => 0
82         $collapsed      => 0
83         $id             => ""
84         $is_empty       => 0
85         $is_subsection  => 0
86         $align          => 0
87 </%args>
90 <%once>
91  use CXGN::Page::FormattingHelpers 'info_section_html';
92 </%once>
94 <% info_section_html( %ARGS, contents => $m->content ) %>