mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-29 11:00:10 +02:00
Last batch of bridges, all implemented !
Signed-off-by: teromene <teromene@teromene.fr>
This commit is contained in:
@@ -1,17 +1,24 @@
|
||||
<?php
|
||||
/**
|
||||
* T411Bridge
|
||||
* Returns 5 newest torrents with specified search criteria
|
||||
*
|
||||
* @name T411
|
||||
* @homepage https://t411.in/
|
||||
* @description Returns the 5 newest torrents with specified search terms <br /> Use url part after '?' mark when using their search engine
|
||||
* @maintainer ORelio
|
||||
* @update 2015-10-22
|
||||
* @use1(search="search criteria")
|
||||
*/
|
||||
class T411Bridge extends BridgeAbstract {
|
||||
|
||||
public function loadMetadatas() {
|
||||
|
||||
$this->maintainer = "ORelio";
|
||||
$this->name = "T411";
|
||||
$this->uri = "https://t411.in/";
|
||||
$this->description = "Returns the 5 newest torrents with specified search terms <br /> Use url part after '?' mark when using their search engine";
|
||||
$this->update = "2015-10-22";
|
||||
|
||||
$this->parameters[] =
|
||||
'[
|
||||
{
|
||||
"name" : "Search criteria",
|
||||
"identifier" : "search"
|
||||
}
|
||||
]';
|
||||
}
|
||||
|
||||
|
||||
public function collectData(array $param) {
|
||||
|
||||
//Utility function for extracting CDATA fields
|
||||
|
Reference in New Issue
Block a user