<<

NAME

C4::XSLT - Functions for displaying XSLT-generated content

FUNCTIONS

XSLTParse4Display

Returns xml for biblionumber and requested XSLT transformation. Returns undef if the transform fails.

Used in OPAC results and detail, intranet results and detail, list display. (Depending on the settings of your XSLT preferences.)

The helper function _get_best_default_xslt_filename is used in a unit test.

buildKohaItemsNamespace

    my $items_xml = buildKohaItemsNamespace( $biblionumber, [ $hidden_items, $items ] );

Returns XML for items. It accepts two optional parameters: - $hidden_items: An arrayref of itemnumber values, for items that should be hidden - $items: A Koha::Items resultset, for the items to be returned

If both parameters are passed, $items is used as the basis resultset, and $hidden_items are filtered out of it.

Is only used in this module currently.

engine

Returns reference to XSLT handler object.

AUTHOR

Joshua Ferraro <jmf@liblime.com>

Koha Development Team <http://koha-community.org/>

<<