mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-09 01:56:39 +02:00
Reformat codebase v4 (#2872)
Reformat code base to PSR12 Co-authored-by: rssbridge <noreply@github.com>
This commit is contained in:
@@ -1,27 +1,28 @@
|
||||
<?php
|
||||
|
||||
class NFLRUSBridge extends BridgeAbstract {
|
||||
class NFLRUSBridge extends BridgeAbstract
|
||||
{
|
||||
const NAME = 'NFLRUS';
|
||||
const URI = 'http://nflrus.ru/';
|
||||
const DESCRIPTION = 'Returns the recent articles published on nflrus.ru';
|
||||
const MAINTAINER = 'Maxim Shpak';
|
||||
|
||||
const NAME = 'NFLRUS';
|
||||
const URI = 'http://nflrus.ru/';
|
||||
const DESCRIPTION = 'Returns the recent articles published on nflrus.ru';
|
||||
const MAINTAINER = 'Maxim Shpak';
|
||||
public function collectData()
|
||||
{
|
||||
$html = getSimpleHTMLDOM(self::URI);
|
||||
$html = defaultLinkTo($html, self::URI);
|
||||
|
||||
public function collectData() {
|
||||
$html = getSimpleHTMLDOM(self::URI);
|
||||
$html = defaultLinkTo($html, self::URI);
|
||||
$articles = $html->find('.big-post_content-col');
|
||||
|
||||
$articles = $html->find('.big-post_content-col');
|
||||
foreach ($articles as $article) {
|
||||
$item = [];
|
||||
|
||||
foreach($articles as $article) {
|
||||
$item = array();
|
||||
$url = $article->find('.big-post_title.card-title a', 0);
|
||||
|
||||
$url = $article->find('.big-post_title.card-title a', 0);
|
||||
|
||||
$item['uri'] = $url->href;
|
||||
$item['title'] = $url->plaintext;
|
||||
$item['content'] = $article->find('div', 0)->innertext;
|
||||
$this->items[] = $item;
|
||||
}
|
||||
}
|
||||
$item['uri'] = $url->href;
|
||||
$item['title'] = $url->plaintext;
|
||||
$item['content'] = $article->find('div', 0)->innertext;
|
||||
$this->items[] = $item;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user