From 43acb555e09a0e7f3c3542030600469313760d19 Mon Sep 17 00:00:00 2001 From: Joseph Date: Fri, 22 Jan 2021 05:20:17 +0000 Subject: [PATCH] [ChristianDailyReporterBridge] Remove bridge (#1948) > The time has come for the Christian Daily Reporter to ride off into the sunset. Disrn is here now and it delivers everything CDR did, times ten. https://christiandailyreporter.com/ --- bridges/ChristianDailyReporterBridge.php | 28 ------------------------ 1 file changed, 28 deletions(-) delete mode 100644 bridges/ChristianDailyReporterBridge.php diff --git a/bridges/ChristianDailyReporterBridge.php b/bridges/ChristianDailyReporterBridge.php deleted file mode 100644 index 85f664df..00000000 --- a/bridges/ChristianDailyReporterBridge.php +++ /dev/null @@ -1,28 +0,0 @@ -find('div.top p a,div.column p a') as $element) { - $item = array(); - // Title - $item['title'] = $element->innertext; - // URL - $item['uri'] = $element->href; - $this->items[] = $item; - } - } -}