mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-03 17:44:48 +02:00
Reformat codebase v4 (#2872)
Reformat code base to PSR12 Co-authored-by: rssbridge <noreply@github.com>
This commit is contained in:
parent
66568e3a39
commit
4f75591060
398 changed files with 58607 additions and 56442 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue