From aacc2c3632ac3cb446c524e24ffd1aa9b5bb6da8 Mon Sep 17 00:00:00 2001 From: efalcy <efalcy@afi-sa.fr> Date: Tue, 1 Sep 2020 12:21:41 +0200 Subject: [PATCH] hotline #115072 : add rss for agenda --- VERSIONS_HOTLINE/115072 | 2 ++ .../Intonation/Library/Widget/Carousel/Agenda/View.php | 2 +- tests/scenarios/Templates/TemplatesTest.php | 2 +- tests/scenarios/Templates/TemplatesWidgetTest.php | 8 ++++++++ 4 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 VERSIONS_HOTLINE/115072 diff --git a/VERSIONS_HOTLINE/115072 b/VERSIONS_HOTLINE/115072 new file mode 100644 index 00000000000..56507861c9a --- /dev/null +++ b/VERSIONS_HOTLINE/115072 @@ -0,0 +1,2 @@ + - ticket #115072 : [Magasin de thèmes] Ajout du flux RSS pour l'agenda + \ No newline at end of file diff --git a/library/templates/Intonation/Library/Widget/Carousel/Agenda/View.php b/library/templates/Intonation/Library/Widget/Carousel/Agenda/View.php index af087ae6510..1ea9564b1b8 100644 --- a/library/templates/Intonation/Library/Widget/Carousel/Agenda/View.php +++ b/library/templates/Intonation/Library/Widget/Carousel/Agenda/View.php @@ -46,7 +46,7 @@ class Intonation_Library_Widget_Carousel_Agenda_View extends Intonation_Library_ protected function _getRSSUrl() { - return ''; + return $this->_getUrlFor('cms', 'calendarrss'); } diff --git a/tests/scenarios/Templates/TemplatesTest.php b/tests/scenarios/Templates/TemplatesTest.php index 474c8b9421d..5d4aba8a0f3 100644 --- a/tests/scenarios/Templates/TemplatesTest.php +++ b/tests/scenarios/Templates/TemplatesTest.php @@ -392,7 +392,7 @@ abstract class TemplatesIntonationTestCase extends TemplatesEnabledTestCase { '21' => ['division' => 3, 'type_module' => 'CALENDAR', - 'preferences' => []], + 'preferences' => ['rss' => 1]], '22' => ['division' => 4, 'type_module' => 'FREE', diff --git a/tests/scenarios/Templates/TemplatesWidgetTest.php b/tests/scenarios/Templates/TemplatesWidgetTest.php index 821e8da0888..33a16be5437 100644 --- a/tests/scenarios/Templates/TemplatesWidgetTest.php +++ b/tests/scenarios/Templates/TemplatesWidgetTest.php @@ -150,6 +150,14 @@ class TemplatesDispatchWidgetRenderAllTest extends TemplatesIntonationTestCase { $this->dispatch('/opac/widget/render-all/profile_id/72/widget_id/' . $widget_id); $this->assertXPath($dom, $this->_response->getBody()); } + + + /** @test */ + public function renderWidgetAgendaShouldDisplayRSSLink() { + $this->dispatch('/opac/widget/render-all/profile_id/72/widget_id/21'); + $this->assertXPath('//button[contains(@title, "Flux RSS de la boite")][contains(@onclick, "/cms/calendarrss?id_module=21&id_profil=72")]', $this->_response->getBody()); + } + } -- GitLab