mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-21 23:55:56 +02:00
Last batch of bridges, all implemented !
Signed-off-by: teromene <teromene@teromene.fr>
This commit is contained in:
@@ -1,19 +1,25 @@
|
||||
<?php
|
||||
/**
|
||||
* RssBridgeEZTV
|
||||
* Monitor torrent for shows on EZTV
|
||||
* 2015-01-20
|
||||
*
|
||||
* @name EZTV
|
||||
* @homepage https://eztv.ch/
|
||||
* @description Returns list of *recent* torrents for a specific show on EZTV. Get showID from URLs in https://eztv.ch/shows/showID/show-full-name.
|
||||
* @maintainer alexAubin
|
||||
* @update 2014-01-20
|
||||
* @use1(i="showID1,showID2,...")
|
||||
*/
|
||||
|
||||
class EZTVBridge extends BridgeAbstract{
|
||||
|
||||
public function loadMetadatas() {
|
||||
|
||||
$this->maintainer = "alexAubin";
|
||||
$this->name = "EZTV";
|
||||
$this->uri = "https://eztv.ch/";
|
||||
$this->description = "Returns list of *recent* torrents for a specific show on EZTV. Get showID from URLs in https://eztv.ch/shows/showID/show-full-name.";
|
||||
$this->update = "2014-01-20";
|
||||
|
||||
$this->parameters[] =
|
||||
'[
|
||||
{
|
||||
"name" : "Show ids",
|
||||
"identifier" : "i",
|
||||
"exampleValue" : "showID1,showID2,..."
|
||||
}
|
||||
]';
|
||||
|
||||
}
|
||||
|
||||
public function collectData(array $param){
|
||||
|
||||
// Make timestamp from relative released time in table
|
||||
|
Reference in New Issue
Block a user