Difference between revisions of "API:EPrints/Box"
(New page: <!-- Pod2Wiki=_preamble_ This page has been automatically generated from the EPrints source. Any wiki changes made between the 'Pod2Wiki=*' and 'End of Pod2Wiki' comments will be lost. -...) |
|||
| (7 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
<!-- Pod2Wiki=_preamble_ | <!-- Pod2Wiki=_preamble_ | ||
| − | This page has been automatically generated from the EPrints source. Any wiki changes made between the 'Pod2Wiki=*' and ' | + | This page has been automatically generated from the EPrints 3.2 source. Any wiki changes made between the 'Pod2Wiki=*' and 'Edit below this comment' comments will be lost. |
| − | -->{{Pod2Wiki}}{{API:Source|file=EPrints/Box.pm|package_name=EPrints::Box}}[[Category:API|Box]]< | + | -->{{API}}{{Pod2Wiki}}{{API:Source|file=perl_lib/EPrints/Box.pm|package_name=EPrints::Box}}[[Category:API|BOX]][[Category:API:EPrints/Box|BOX]]<div><!-- Edit below this comment --> |
| − | <!-- | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | <!-- | + | <!-- Pod2Wiki=_private_ --><!-- Pod2Wiki=head_name --> |
| − | <!-- Pod2Wiki= | + | ==NAME== |
| + | '''EPrints::Box''' - Class to render cute little collapsable/expandable Web 2.0ish boxes. | ||
| − | + | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | |
| + | <span style='display:none'>User Comments</span> | ||
| + | <!-- Edit below this comment --> | ||
| − | |||
| − | + | <!-- Pod2Wiki= --> | |
| + | </div> | ||
| + | <!-- Pod2Wiki=head_synopsis --> | ||
| + | ==SYNOPSIS== | ||
| + | use EPrints; | ||
| + | |||
| + | # an XHTML DOM box with a title and some content that starts rolled up. | ||
| + | EPrints::Box( | ||
| + | handle => $handle, | ||
| + | id => "my_box", | ||
| + | title => $my_title_dom, | ||
| + | content => $my_content_dom, | ||
| + | collapsed => 1, | ||
| + | ); | ||
| + | |||
| − | < | + | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> |
| − | <!-- | + | <span style='display:none'>User Comments</span> |
| + | <!-- Edit below this comment --> | ||
| − | |||
| − | + | <!-- Pod2Wiki= --> | |
| − | <!-- Pod2Wiki= | + | </div> |
| − | + | <!-- Pod2Wiki=head_description --> | |
| − | + | ==DESCRIPTION== | |
| − | + | This just provides a function to render boxes in the EPrints style. | |
| − | < | ||
| − | <!-- Pod2Wiki= | ||
| − | + | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | |
| + | <span style='display:none'>User Comments</span> | ||
| + | <!-- Edit below this comment --> | ||
| − | |||
| − | |||
| − | + | <!-- Pod2Wiki= --> | |
| + | </div> | ||
| + | <!-- Pod2Wiki=item_render --> | ||
| + | ===$box_xhtmldom = EPrints::Box::render( %options )=== | ||
| − | + | Render a collapsable/expandable box to which content can be added. The box is in keeping with the eprints style | |
| − | |||
| − | + | Required Options: | |
| − | < | + | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> |
| − | <!-- | + | <span style='display:none'>User Comments</span> |
| + | <!-- Edit below this comment --> | ||
| − | |||
| − | <!-- | + | <!-- Pod2Wiki= --> |
| − | <!-- Pod2Wiki= | + | </div> |
| + | <!-- Pod2Wiki=head_copyright --> | ||
| + | ==COPYRIGHT== | ||
| + | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
| + | <span style='display:none'>User Comments</span> | ||
| + | <!-- Edit below this comment --> | ||
| − | |||
| − | <!-- | + | <!-- Pod2Wiki= --> |
| − | <!-- Pod2Wiki=_postamble_ --><!-- | + | </div> |
| + | <!-- Pod2Wiki=_postamble_ --><!-- Edit below this comment --> | ||
Revision as of 15:26, 16 December 2011
EPrints 3 Reference: Directory Structure - Metadata Fields - Repository Configuration - XML Config Files - XML Export Format - EPrints data structure - Core API - Data Objects
Latest Source Code (3.4, 3.3) | Revision Log | Before editing this page please read Pod2Wiki
Contents
NAME
EPrints::Box - Class to render cute little collapsable/expandable Web 2.0ish boxes.
SYNOPSIS
use EPrints;
# an XHTML DOM box with a title and some content that starts rolled up.
EPrints::Box(
handle => $handle,
id => "my_box",
title => $my_title_dom,
content => $my_content_dom,
collapsed => 1,
);
DESCRIPTION
This just provides a function to render boxes in the EPrints style.
$box_xhtmldom = EPrints::Box::render( %options )
Render a collapsable/expandable box to which content can be added. The box is in keeping with the eprints style
Required Options:
COPYRIGHT