mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-04 16:49:35 +00:00
[CorreioDaFeiraBridge] cache timeout + getName fixes (#3453)
* [CorreioDaFeiraBridge] cache timeout fix * [CorreioDaFeiraBridge] cache timeout fix * [CorreioDaFeiraBridge] getName() fix
This commit is contained in:
parent
a4ed52ca30
commit
1b02d4f49b
@ -6,6 +6,7 @@ class CorreioDaFeiraBridge extends BridgeAbstract
|
|||||||
const URI = 'https://www.correiodafeira.pt/';
|
const URI = 'https://www.correiodafeira.pt/';
|
||||||
const DESCRIPTION = 'Returns news from the Portuguese local newspaper Correio da Feira';
|
const DESCRIPTION = 'Returns news from the Portuguese local newspaper Correio da Feira';
|
||||||
const MAINTAINER = 'rmscoelho';
|
const MAINTAINER = 'rmscoelho';
|
||||||
|
const CACHE_TIMEOUT = 86400;
|
||||||
const PARAMETERS = [
|
const PARAMETERS = [
|
||||||
[
|
[
|
||||||
'feed' => [
|
'feed' => [
|
||||||
@ -36,11 +37,7 @@ class CorreioDaFeiraBridge extends BridgeAbstract
|
|||||||
|
|
||||||
public function getName()
|
public function getName()
|
||||||
{
|
{
|
||||||
$feed = $this->getInput('feed');
|
return !is_null($this->getKey('feed')) ? self::NAME . ' | ' . $this->getKey('feed') : self::NAME;
|
||||||
if ($this->getInput('feed') !== null && $this->getInput('feed') !== '') {
|
|
||||||
return self::NAME . ' | ' . ucfirst($feed);
|
|
||||||
}
|
|
||||||
return self::NAME;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getURI()
|
public function getURI()
|
||||||
|
Loading…
Reference in New Issue
Block a user