forked from blallo/rss-bridge
[AnimeUltime] Simple tab/space fix in source file
Don't have anything against tabs but let's keep concistent at least on a per-file scope - this simlply replaces tabs with spaces as this file is using spaces for code indentation.
This commit is contained in:
parent
91fe6c4acc
commit
4ccd1b84e5
1 changed files with 34 additions and 33 deletions
|
@ -3,44 +3,45 @@ class AnimeUltimeBridge extends BridgeAbstract {
|
||||||
|
|
||||||
private $filter = 'Releases';
|
private $filter = 'Releases';
|
||||||
|
|
||||||
public function loadMetadatas() {
|
public function loadMetadatas() {
|
||||||
|
|
||||||
$this->maintainer = "ORelio";
|
$this->maintainer = 'ORelio';
|
||||||
$this->name = "Anime-Ultime";
|
$this->name = 'Anime-Ultime';
|
||||||
$this->uri = "http://www.anime-ultime.net/";
|
$this->uri = 'http://www.anime-ultime.net/';
|
||||||
$this->description = "Returns the 10 newest releases posted on Anime-Ultime";
|
$this->description = 'Returns the 10 newest releases posted on Anime-Ultime';
|
||||||
$this->update = "2015-10-30";
|
$this->update = '2015-10-30';
|
||||||
|
|
||||||
$this->parameters[] =
|
$this->parameters[] =
|
||||||
'[
|
'[
|
||||||
{
|
{
|
||||||
"name" : "Type",
|
"name" : "Type",
|
||||||
"type" : "list",
|
"type" : "list",
|
||||||
"identifier" : "type",
|
"identifier" : "type",
|
||||||
"values" : [
|
"values" :
|
||||||
{
|
[
|
||||||
"name" : "everything",
|
{
|
||||||
"value" : ""
|
"name" : "Everything",
|
||||||
|
"value" : ""
|
||||||
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name" : "Anime",
|
"name" : "Anime",
|
||||||
"value" : "A"
|
"value" : "A"
|
||||||
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name" : "Drama",
|
"name" : "Drama",
|
||||||
"value" : "D"
|
"value" : "D"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name" : "Tokusatsu",
|
"name" : "Tokusatsu",
|
||||||
"value" : "T"
|
"value" : "T"
|
||||||
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]';
|
]';
|
||||||
}
|
}
|
||||||
|
|
||||||
public function collectData(array $param) {
|
public function collectData(array $param) {
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue