mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-04 18:14:44 +02:00
[DailyShirts] Add daily shirt sites (#2962)
This commit is contained in:
parent
08c1f55f4a
commit
e99cbf21b2
3 changed files with 109 additions and 0 deletions
34
bridges/QwerteeBridge.php
Normal file
34
bridges/QwerteeBridge.php
Normal file
|
@ -0,0 +1,34 @@
|
|||
<?php
|
||||
|
||||
class QwerteeBridge extends BridgeAbstract
|
||||
{
|
||||
const NAME = 'Qwertee';
|
||||
const URI = 'https://www.qwertee.com';
|
||||
const DESCRIPTION = 'Returns the daily designs';
|
||||
const MAINTAINER = 'Bockiii';
|
||||
const PARAMETERS = [];
|
||||
|
||||
const CACHE_TIMEOUT = 60 * 60 * 3; // 3 hours
|
||||
|
||||
public function collectData()
|
||||
{
|
||||
$html = getSimpleHTMLDOM(self::URI);
|
||||
|
||||
foreach ($html->find('div.big-slides', 0)->find('div.big-slide') as $element) {
|
||||
$title = $element->find('div.index-tee', 0)->getAttribute('data-name', 0);
|
||||
$today = date('m/d/Y');
|
||||
$item = [];
|
||||
$item['uri'] = self::URI;
|
||||
$item['title'] = $title;
|
||||
$item['uid'] = $title;
|
||||
$item['timestamp'] = $today;
|
||||
$item['content'] = '<a href="'
|
||||
. $item['uri']
|
||||
. '"><img src="'
|
||||
. $element->find('img', 0)->getAttribute('src', 0)
|
||||
. '" /></a>';
|
||||
|
||||
$this->items[] = $item;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue