You are here

swftools-jw5-playlist-wrapper.tpl.php in SWF Tools 6.3

Template for the xml wrapper around a LongTail JW Player 5 playlist.

File

jw5/swftools-jw5-playlist-wrapper.tpl.php
View source
<?php

/**
 * @file
 * Template for the xml wrapper around a LongTail JW Player 5 playlist.
 */

/**
 * Prepare xml output for a playlist
 * The markup is placed in a template so that it can be easily over-ridden by the theme system
 * to allow flexibility
 *
 * This template wraps the xml headers and footers around the xml markup that was produced using
 * the jw5-playlist-elements template.
 *
 * Available variables:
 * - $header: An array of data that can be used to inject variables to the markup.
 * - $xml: The markup that describes all the playlist elements.
 *
 */
?>

<playlist version="1" xmlns="http://xspf.org/ns/0/">
<trackList>

<?php

print $xml;
?>

</trackList>
</playlist>