diff options
author | Sem <sembrestels@riseup.net> | 2011-11-19 22:48:56 +0100 |
---|---|---|
committer | Sem <sembrestels@riseup.net> | 2011-11-19 22:48:56 +0100 |
commit | 9a449b126c89481baadb8810d2d304c93aded7a8 (patch) | |
tree | f4908ed946146e25785fe714bb98ce30adfc588c /lib/gisstv.php | |
parent | e7d8b73c0e65f188b835bbb0a7e98eb2fa0f3478 (diff) | |
parent | 27cfe71b0bb0e4b18b119a7ba17a449771a065b3 (diff) | |
download | elgg-9a449b126c89481baadb8810d2d304c93aded7a8.tar.gz elgg-9a449b126c89481baadb8810d2d304c93aded7a8.tar.bz2 |
Merge branch 'elgg-videolist' of github.com:lorea/videolist into lorea-1.8
Diffstat (limited to 'lib/gisstv.php')
-rw-r--r-- | lib/gisstv.php | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/lib/gisstv.php b/lib/gisstv.php deleted file mode 100644 index 24e11340a..000000000 --- a/lib/gisstv.php +++ /dev/null @@ -1,41 +0,0 @@ -<?php - -function videolist_parseurl_gisstv($url) { - $parsed = parse_url($url); - $path = explode('/', $parsed['path']); - - if ($parsed['host'] != 'giss.tv' || $path[1] != 'dmmdb') { - return false; - } - - if($path[2] == 'contents' && isset($path[3])) { - $video_id = $path[3]; - } elseif($path[3] == 'contents' && isset($path[4])) { - $video_id = $path[4]; - } else { - return false; - } - - return array( - 'videotype' => 'gisstv', - 'video_id' => $video_id, - ); -} - -function videolist_get_data_gisstv($parsed){ - $video_id = $parsed['video_id']; - - $buffer = file_get_contents('http://giss.tv/dmmdb//rss.php'); - $xml = new SimpleXMLElement($buffer); - - $data = array(); - foreach($xml->xpath('/rss/channel/item') as $item){ - if(sanitize_string($item->link) == 'http://giss.tv/dmmdb//contents/'.$video_id) { - $data['title'] = sanitize_string($item->title); - $data['description'] = strip_tags($item->description); - $data['thumbnail'] = sanitize_string($item->thumbnail); - break; - } - } - return $data; -} |