blob: 2b848850590dfc65e4da741f4453897e9cf9625e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<?php
class SteamGroupAnnouncementsBridge extends FeedExpander
{
const MAINTAINER = 'Jisagi';
const NAME = 'Steam Group Announcements';
const URI = 'https://steamcommunity.com/';
const DESCRIPTION = 'Returns latest announcements from a steam group.';
const PARAMETERS = [
[
'g' => [
'name' => 'Group name',
'exampleValue' => 'freegamesfinders',
'required' => true
]
]
];
public function collectData()
{
$uri = self::URI . 'groups/' . $this->getInput('g') . '/rss';
$this->collectExpandableDatas($uri, 10);
}
}
|