diff --git a/application/modules/admin/views/scripts/accueil/calendrier.phtml b/application/modules/admin/views/scripts/accueil/calendrier.phtml index b7bb6d5ad58506a20ab9586063460b7ab2b9e422..e3845b0b0d87c00175a82037f3b29358291d15e1 100644 --- a/application/modules/admin/views/scripts/accueil/calendrier.phtml +++ b/application/modules/admin/views/scripts/accueil/calendrier.phtml @@ -110,7 +110,7 @@ </tr> <tr> - <td class="droite"><?php echo $this->_('Activer l\'affichage en pleine page'); ?></td> + <td class="droite"><?php echo $this->_('Activer la redirection vers la liste d\'articles'); ?></td> <td class="gauche"> <?php echo $this->formCheckbox('display_full_page', $this->preferences['display_full_page'], diff --git a/library/Class/Calendar.php b/library/Class/Calendar.php index cd936ae5ca4d4b87c2f4ff4fd95dbc56473ba33e..35d19b1a34490e81750b92df5a66fbd46538de9f 100644 --- a/library/Class/Calendar.php +++ b/library/Class/Calendar.php @@ -59,8 +59,8 @@ class Class_Calendar { $this->year = date("Y", $this->getTimeSource()->time()); } $this->param["DATE"] = sprintf('%4d-%02d', $this->year, $this->month); -// if($day) - // $this->param['DAY'].= sprintf('-%02d', $day); + if($day) + $this->param['DAY'] = $this->param['DATE'] . sprintf('-%02d', $day); $this->id_module = $this->param["ID_MODULE"]; } @@ -189,7 +189,10 @@ class Class_Calendar { public function getArticles() { - $articles = $this->_getNextEvents(); + $articles = isset($this->param['DAY']) + ? $this->_loadArticles(['event_date' => $this->param['DAY']]) + : $this->_getNextEvents(); + $nb_news = $this->param["NB_NEWS"]; return array_slice($articles, 0, $nb_news); } diff --git a/library/ZendAfi/View/Helper/Calendar/Table.php b/library/ZendAfi/View/Helper/Calendar/Table.php index e17bd4fcbcc28e5a7e02866699da42b889cbbf96..074e6825288197941c8bb2b84d299676cb31b1d5 100644 --- a/library/ZendAfi/View/Helper/Calendar/Table.php +++ b/library/ZendAfi/View/Helper/Calendar/Table.php @@ -191,6 +191,8 @@ class ZendAfi_View_Helper_Calendar_Table extends Zend_View_Helper_HtmlElement { protected function getTableCalendarHeader() { $anchor_class= ['class' => 'calendar_title_month_clickable']; + $anchor_class['class'].= $this->param['DISPLAY_FULL_PAGE'] ? '' : ' calendar_ajax_ready'; + $previews_month = $this->view->tagAnchor($this->getURL('LAST_MONTH'), '« ', @@ -312,6 +314,7 @@ class ZendAfi_View_Helper_Calendar_Table extends Zend_View_Helper_HtmlElement { $cell_classes = implode(' ', array_unique($day_classes)); if (in_array('day_clickable', $day_classes)) { $options = ['class' => $cell_classes, 'target' => '_parent']; + $options['class'].= $this->param['DISPLAY_FULL_PAGE'] ? '' : ' calendar_ajax_ready'; $table_cell.= $this->view->tagAnchor($this->getURL('EVENTS',$day), $today_click, $options); } else { $table_cell .= $this->view->tag('span', $day,['class' => $cell_classes]); diff --git a/public/opac/js/calendrier.js b/public/opac/js/calendrier.js index 57381a4cc593e60d0be560612237b6d0b8ab4477..a70e163d9f427e209baf618287630adf2f1d65df 100644 --- a/public/opac/js/calendrier.js +++ b/public/opac/js/calendrier.js @@ -1,5 +1,5 @@ var ajaxify_calendars = function () { - var month_link = $("a.calendar_title_month_clickable:first-child, a.calendar_title_month_clickable:last-child, .calendar .month_list a:not(.no_event), .filters a"); + var month_link = $(".calendar_ajax_ready, .calendar_title_left_arrow a, .calendar_title_right_arrow a, .calendar .month_list a:not(.no_event), .filters a"); month_link.click(function(event) { var url = $(this).attr('href'); diff --git a/tests/application/modules/opac/controllers/CmsControllerCalendarActionTest.php b/tests/application/modules/opac/controllers/CmsControllerCalendarActionTest.php index a255427b25ccd74a29787c8acd9ecd455beed211..1fddada33d21b08b85a34629cf619c9d7474c781 100644 --- a/tests/application/modules/opac/controllers/CmsControllerCalendarActionTest.php +++ b/tests/application/modules/opac/controllers/CmsControllerCalendarActionTest.php @@ -334,21 +334,27 @@ class CmsControllerCalendarActionWithDayTest extends CmsControllerCalendarAction } + /** @test */ + public function currentMonthLinkShouldHaveReadyAjaxClass() { + $this->assertXPath('//table[@class="calendar_main"]//td[@class="calendar_title_month"]//a[contains(@class, "calendar_ajax_ready")]'); + } + + /** @test */ public function newsOfThe30thShouldBePresent() { - $this->assertXPathContentContains('div[@class="calendar"]//article//header//h2//a', 'News of the 30th september'); + $this->assertXPathContentContains('//div[@class="calendar"]//article//header//h2//a', 'News of the 30th September'); } /** @test **/ public function newsOfThe15ThSeptemberEventShouldNotBPresent() { - $this->assertNotXPathContentContains('div[@class="calendar"]//article//header', 'News of the 15th september'); + $this->assertNotXPathContentContains('//div[@class="calendar"]//article//header', 'News of the 15th September'); } /** @test */ public function newsOfThe15thSeptemberShouldBeClickableAtThe15Th() { - $this->assertXPath('div[@class="calendar"]//table//a[contains(@class, "day_clickable")][contains(@href, "date/2014-09-15")]'); + $this->assertXPath('//div[@class="calendar"]//table//a[contains(@class, "day_clickable")][contains(@href, "date/2014-09-15")]'); } } ?> \ No newline at end of file