1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-08-19 14:52:13 +02:00

Reformat codebase v4 (#2872)

Reformat code base to PSR12

Co-authored-by: rssbridge <noreply@github.com>
This commit is contained in:
Dag
2022-07-01 15:10:30 +02:00
committed by GitHub
parent 66568e3a39
commit 4f75591060
398 changed files with 58607 additions and 56442 deletions

View File

@@ -1,42 +1,44 @@
<?php
class StanfordSIRbookreviewBridge extends BridgeAbstract {
const MAINTAINER = 'Kidman1670';
const NAME = 'StanfordSIRbookreviewBridge';
const URI = 'https://ssir.org/books/';
const CACHE_TIMEOUT = 21600;
const DESCRIPTION = 'Return results from SSIR book review.';
const PARAMETERS = array( array(
'style' => array(
'name' => 'style',
'type' => 'list',
'values' => array(
'reviews' => 'reviews',
'excerpts' => 'excerpts',
)
)
)
);
public function collectData() {
switch($this->getInput('style')) {
case 'reviews':
$url = self::URI . 'reviews';
break;
case 'excerpts':
$url = self::URI . 'excerpts';
break;
}
class StanfordSIRbookreviewBridge extends BridgeAbstract
{
const MAINTAINER = 'Kidman1670';
const NAME = 'StanfordSIRbookreviewBridge';
const URI = 'https://ssir.org/books/';
const CACHE_TIMEOUT = 21600;
const DESCRIPTION = 'Return results from SSIR book review.';
const PARAMETERS = [ [
'style' => [
'name' => 'style',
'type' => 'list',
'values' => [
'reviews' => 'reviews',
'excerpts' => 'excerpts',
]
]
]
];
$html = getSimpleHTMLDOM($url)
or returnServerError('Failed loading content!');
foreach($html->find('article') as $element) {
$item = array();
$item['title'] = $element->find('div > h4 > a', 0)->plaintext;
$item['uri'] = $element->find('div > h4 > a', 0)->href;
$item['content'] = $element->find('div > div.article-entry > p', 2)->plaintext;
$item['author'] = $element->find('div > div > p', 0)->plaintext;
$this->items[] = $item;
public function collectData()
{
switch ($this->getInput('style')) {
case 'reviews':
$url = self::URI . 'reviews';
break;
case 'excerpts':
$url = self::URI . 'excerpts';
break;
}
}
}
$html = getSimpleHTMLDOM($url)
or returnServerError('Failed loading content!');
foreach ($html->find('article') as $element) {
$item = [];
$item['title'] = $element->find('div > h4 > a', 0)->plaintext;
$item['uri'] = $element->find('div > h4 > a', 0)->href;
$item['content'] = $element->find('div > div.article-entry > p', 2)->plaintext;
$item['author'] = $element->find('div > div > p', 0)->plaintext;
$this->items[] = $item;
}
}
}