diff --git a/VERSIONS_HOTLINE/78376 b/VERSIONS_HOTLINE/78376 new file mode 100644 index 0000000000000000000000000000000000000000..ab136361e7f5aa0600cdc8bf3bc4f89b29f9df24 --- /dev/null +++ b/VERSIONS_HOTLINE/78376 @@ -0,0 +1 @@ + - ticket #78376 : Vue notice : les kiosques de notices sont maintenant visibles dans la description. \ No newline at end of file diff --git a/library/ZendAfi/View/Helper/Article/ReplaceWidgets.php b/library/ZendAfi/View/Helper/Article/ReplaceWidgets.php index 6469880a33530b15577e20acef6409826a71bddb..75b44d07580b3d81cb4d95b25b8c3d4aa6c7b45f 100644 --- a/library/ZendAfi/View/Helper/Article/ReplaceWidgets.php +++ b/library/ZendAfi/View/Helper/Article/ReplaceWidgets.php @@ -25,23 +25,22 @@ class ZendAfi_View_Helper_Article_ReplaceWidgets extends ZendAfi_View_Helper_Bas return preg_replace_callback( '|(?P<allimg><img[^>]+data-code="(?P<code>\w+)"[^>]+data-form="(?P<form>[^"]+)[^>]*>)|', function ($matches) { - - return $this->_renderWidget($matches['code'],$matches['form']); - + return $this->_renderWidget($matches['code'], $matches['form']); }, - $content - ); + $content); } - protected function _renderWidget($code,$form) { + protected function _renderWidget($code, $form) { $prefs = []; - - parse_str(html_entity_decode($form),$prefs); - $params=['type_module'=> $code, - 'preferences' => $prefs]; - $helper = ZendAfi_View_Helper_Accueil_Base::getModuleHelperFromParams(null,$params,$this->view); - return $helper->setFonctionAdminHelper(null)->getBoite(); + parse_str(html_entity_decode($form), $prefs); + $params = ['type_module'=> $code, + 'preferences' => $prefs]; + $helper = ZendAfi_View_Helper_Accueil_Base::getModuleHelperFromParams(null, + $params, + $this->view); + return $helper + ->setFonctionAdminHelper(null) + ->getBoite(); } -} -?> \ No newline at end of file +} \ No newline at end of file diff --git a/library/ZendAfi/View/Helper/Notice/Entete.php b/library/ZendAfi/View/Helper/Notice/Entete.php index 08c35cc06cd2e1465f9d9a8a9d90f0ab198aa971..e0e5b5e57da3b3c99052f143c548f0d8ce2add1f 100644 --- a/library/ZendAfi/View/Helper/Notice/Entete.php +++ b/library/ZendAfi/View/Helper/Notice/Entete.php @@ -113,7 +113,7 @@ class ZendAfi_View_Helper_Notice_Entete extends ZendAfi_View_Helper_BaseHelper { public function getValeursHtml($valeur) { if (gettype($valeur) != 'array') - return $valeur; + return $this->view->article_ReplaceWidgets($valeur); $html = ''; foreach($valeur as $item) diff --git a/tests/application/modules/opac/controllers/NoticeAjaxControllerTest.php b/tests/application/modules/opac/controllers/NoticeAjaxControllerTest.php index c4fe0a575bb3c9858bc67344fdf6cd24a09c5078..ef682af0722d22826bd4d73cff0066f9168572af 100644 --- a/tests/application/modules/opac/controllers/NoticeAjaxControllerTest.php +++ b/tests/application/modules/opac/controllers/NoticeAjaxControllerTest.php @@ -2464,4 +2464,48 @@ class NoticeAjaxControllerDetailWithMultipleEditorsTest extends AbstractControll public function shouldContainsEditorsKaizen() { $this->assertXPathContentContains('//dd//div', 'Kaizen'); } +} + + + + +class NoticeAjaxControllerWithKiosqueInResumeTest extends AbstractControllerTestCase { + + protected $_storm_default_to_volatile = true; + + + public function setUp() { + parent::setUp(); + $album = $this->fixture('Class_Album', + ['id' => 55, + 'titre' => 'Belgique', + 'status' => Class_Album::STATUS_VALIDATED, + 'visible' => true, + 'description' => '<img alt="Malle de 38 documents sur la Belgique " class="bokeh_kiosk" data-code="KIOSQUE" data-form="titre=Malle de 38 documents sur la Belgique&style_liste=jcarousel&styles_reload=0&op_auto=0&op_scroll=1&op_largeur_img=120&op_hauteur_img=150&profil_redirect=&id_catalogue=&id_panier=98&aleatoire=1&tri=1&nb_notices=20&nb_analyse=50&only_img=1&boite=&rss_avis=0" longdesc="Malle de 38 documents sur la Belgique" src="http://www.pergame-enligne.net/ckeditor/../public/opac/js/ckeditor_plugins/bokeh_kiosk/icons/placeholder.png" style="height: 150px; width: 200px;" title="Malle de 38 documents sur la Belgique " />']); + + $album->index(); + + $second_album = $this->fixture('Class_Album', + ['id' => 89, + 'titre' => 'Libre', + 'status' => Class_Album::STATUS_VALIDATED, + 'visible' => true, + 'description' => 'Ceci est un logiciel libre.']); + + $second_album->index(); + } + + + /** @test */ + public function pageShouldContainsIFrame() { + $this->dispatch('/noticeajax/detail/id/1', true); + $this->assertXPath( '//iframe[contains(@src, "style_liste/jcarousel")]'); + } + + + /** @test */ + public function pageShouldContainsDescription() { + $this->dispatch('/noticeajax/detail/id/2', true); + $this->assertXPathContentContains( '//dd', 'Ceci est un logiciel libre.'); + } } \ No newline at end of file