From 57e79e7f1b05f08419723c52ab04f4e53404aba5 Mon Sep 17 00:00:00 2001 From: sysadminstory Date: Sun, 29 Jan 2023 19:45:55 +0100 Subject: [PATCH] [RadioMelodieBridge] Fix article content (#3230) - remove the social network share section ath the beginning and and the end of the article - removte the HTML formated article tilthe from the content - limite the author picture size to 60 px --- bridges/RadioMelodieBridge.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/bridges/RadioMelodieBridge.php b/bridges/RadioMelodieBridge.php index 392a8dbb..917b6ef2 100644 --- a/bridges/RadioMelodieBridge.php +++ b/bridges/RadioMelodieBridge.php @@ -26,6 +26,14 @@ class RadioMelodieBridge extends BridgeAbstract $article = str_get_html($article->save()); $textDOM = $article->find('article', 0); + // Remove HTML code for the article title + $textDOM->find('h1', 0)->outertext = ''; + + // Fix the CSS for the author + $textDOM->find('div[class=author]', 0)->find('img', 0) + ->setAttribute('style', 'width: 60px; margin: 0 15px; display: inline-block; vertical-align: top;'); + + // Initialise arrays $item = []; $audio = []; @@ -76,6 +84,7 @@ class RadioMelodieBridge extends BridgeAbstract // Remove the share article part $textDOM->find('div[class=share]', 0)->outertext = ''; + $textDOM->find('div[class=share]', 1)->outertext = ''; // Rewrite relative Links $textDOM = defaultLinkTo($textDOM, self::URI . '/');