From 744f996224ff4ce7c2d199605f79ffbdc7877acc Mon Sep 17 00:00:00 2001 From: Latz Date: Wed, 5 Mar 2025 19:39:18 +0100 Subject: [PATCH] =?UTF-8?q?Added=20bridge=20for=20Toms=20Touch=C3=A9=20(ht?= =?UTF-8?q?tps://taz.de/#!tom=3Dtomdestages)=20(#4438)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bridges/TomsToucheBridge.php | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 bridges/TomsToucheBridge.php diff --git a/bridges/TomsToucheBridge.php b/bridges/TomsToucheBridge.php new file mode 100644 index 00000000..3e21fdcb --- /dev/null +++ b/bridges/TomsToucheBridge.php @@ -0,0 +1,28 @@ +find('p[x-ref]'); + $date = trim($date[0]->innertext); + [$day, $month, $year] = explode('.', $date); + $image = $html->find('img[alt="tom des tages"]'); + + $item = []; + $item['title'] = "Toms Touché - $date"; + $item['uri'] = 'https://taz.de/#!tom=tomdestages'; + $item['timestamp'] = mktime(0, 0, 0, $month, $day, $year); + $item['content'] = $image[0] . ''; // This isn't good HTML style, but at least syntactically correct + $item['uid'] = $image[0]->getAttribute('src'); + $this->items[] = $item; + } +}