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';
|
||||
|
||||
public function loadMetadatas() {
|
||||
public function loadMetadatas() {
|
||||
|
||||
$this->maintainer = "ORelio";
|
||||
$this->name = "Anime-Ultime";
|
||||
$this->uri = "http://www.anime-ultime.net/";
|
||||
$this->description = "Returns the 10 newest releases posted on Anime-Ultime";
|
||||
$this->update = "2015-10-30";
|
||||
$this->maintainer = 'ORelio';
|
||||
$this->name = 'Anime-Ultime';
|
||||
$this->uri = 'http://www.anime-ultime.net/';
|
||||
$this->description = 'Returns the 10 newest releases posted on Anime-Ultime';
|
||||
$this->update = '2015-10-30';
|
||||
|
||||
$this->parameters[] =
|
||||
'[
|
||||
{
|
||||
"name" : "Type",
|
||||
"type" : "list",
|
||||
"identifier" : "type",
|
||||
"values" : [
|
||||
{
|
||||
"name" : "everything",
|
||||
"value" : ""
|
||||
$this->parameters[] =
|
||||
'[
|
||||
{
|
||||
"name" : "Type",
|
||||
"type" : "list",
|
||||
"identifier" : "type",
|
||||
"values" :
|
||||
[
|
||||
{
|
||||
"name" : "Everything",
|
||||
"value" : ""
|
||||
|
||||
},
|
||||
{
|
||||
"name" : "Anime",
|
||||
"value" : "A"
|
||||
},
|
||||
{
|
||||
"name" : "Anime",
|
||||
"value" : "A"
|
||||
|
||||
},
|
||||
{
|
||||
"name" : "Drama",
|
||||
"value" : "D"
|
||||
},
|
||||
{
|
||||
"name" : "Tokusatsu",
|
||||
"value" : "T"
|
||||
},
|
||||
{
|
||||
"name" : "Drama",
|
||||
"value" : "D"
|
||||
},
|
||||
{
|
||||
"name" : "Tokusatsu",
|
||||
"value" : "T"
|
||||
|
||||
}
|
||||
]
|
||||
}
|
||||
]';
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]';
|
||||
}
|
||||
|
||||
public function collectData(array $param) {
|
||||
|
||||
|
|
Loading…
Reference in a new issue