Example #1
0
 /**
  * Sends the playlist to the jukebox
  * 
  * @author Ross Carlson
  * @version 2/10/05
  * @since 2/10/05
  */
 function jukebox($playlist = false)
 {
     global $include_path, $web_root, $root_dir, $media_dir, $audio_mimes, $playlist_ext;
     if ($playlist === false) {
         $playlist = $this;
     }
     // Now let's create the jukebox object
     include_once $include_path . "jukebox/class.php";
     $jb = new jzJukebox();
     $jb->passPlaylist($playlist);
 }