clipbucket/upload/plugins/editors_pick/editors_pick_player.php

31 lines
1 KiB
PHP
Raw Normal View History

2009-08-25 12:16:42 +00:00
<?php
/*
****************************************************************************************************
| Copyright (c) 2007-2008 Clip-Bucket.com. All rights reserved. |
| @ Author : ArslanHassan |
| @ Module : Editors Pick Player |
| @ Module File : editors_pick_player.xml.php {PLAYLIST FILE} |
| @ Date : Jan, 21 2008 |
| @ License: Addon With ClipBucket |
****************************************************************************************************
*/
include ("../../includes/config.inc.php");
2009-08-25 12:16:42 +00:00
echo"<?xml version=\"1.0\" encoding=\"utf-8\"?>";
echo"<options>\n\t";
echo"<videos>\n\t";
$ep_videos = get_ep_videos();
foreach($ep_videos as $video)
{
if(!empty($video['title']))
{
echo" <imageName target=\"_self\" html=\"\" flv=\"".get_video_file($video,true,true)."\" autoStart=\"false\">".getthumb($video,'big')."</imageName>\n\t\t";
}
2009-08-25 12:16:42 +00:00
}
2009-08-25 12:16:42 +00:00
echo "\n\t";
echo"</videos>\n";
echo"</options>";
?>