You are here

private function Playlist::getASXXML in MediaFront 6

Same name and namespace in other branches
  1. 6.2 players/osmplayer/player/playlist/Playlist.php \Playlist::getASXXML()
  2. 7 players/osmplayer/player/playlist/Playlist.php \Playlist::getASXXML()

Returns the full playlist in ASX XML format.

Parameters

- The track contents.:

1 call to Playlist::getASXXML()
Playlist::getPlaylist in players/osmplayer/player/playlist/Playlist.php
Returns the playlist in XML form.

File

players/osmplayer/player/playlist/Playlist.php, line 408

Class

Playlist
Playlist Class

Code

private function getASXXML($content) {
  $output = '<asx version="3.0">';
  $output .= "\n";
  $output .= $content;
  $output .= '</asx>';
  $output .= "\n";
  return $output;
}