diff --git a/VERSIONS_HOTLINE/28228 b/VERSIONS_HOTLINE/28228 new file mode 100644 index 0000000000000000000000000000000000000000..8dfe4a7d93290f2653600941bfa7427d8693ed89 --- /dev/null +++ b/VERSIONS_HOTLINE/28228 @@ -0,0 +1 @@ + - ticket #28228 : Correction de l'infobulle du lien vers le formulaire de contact \ No newline at end of file diff --git a/VERSIONS_HOTLINE/43916 b/VERSIONS_HOTLINE/43916 new file mode 100644 index 0000000000000000000000000000000000000000..c5a4bcec00272bb18e6cff5b3f2c6bbf268e4ebd --- /dev/null +++ b/VERSIONS_HOTLINE/43916 @@ -0,0 +1 @@ + - ticket #43916 : Les favoris du compte lecteur sont affichés par ordre alphabétique \ No newline at end of file diff --git a/library/Class/Catalogue.php b/library/Class/Catalogue.php index ae958d1a0756f36859d03cd6f2eb965303e09213..03be9aabb0f1dfcf5e4f0901b71f714e07bb1017 100644 --- a/library/Class/Catalogue.php +++ b/library/Class/Catalogue.php @@ -44,7 +44,8 @@ class CatalogueLoader extends Storm_Model_Loader { public function findAllCataloguesAIndexer() { - return Class_Catalogue::findAllBy(['indexer'=>true]); + return Class_Catalogue::findAllBy(['indexer' => true, + 'order' => 'libelle']); } diff --git a/library/ZendAfi/View/Helper/ShareByMail.php b/library/ZendAfi/View/Helper/ShareByMail.php index d56a625a1b7a25e6bf17e21baeece2cb4da12b2b..9c0802872aa06e1f9721a1f1c4c3a761dc5fbcfb 100644 --- a/library/ZendAfi/View/Helper/ShareByMail.php +++ b/library/ZendAfi/View/Helper/ShareByMail.php @@ -16,7 +16,7 @@ * * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE * along with BOKEH; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ class ZendAfi_View_Helper_ShareByMail extends Zend_View_Helper_HtmlElement { @@ -28,13 +28,13 @@ class ZendAfi_View_Helper_ShareByMail extends Zend_View_Helper_HtmlElement { return $html = $this->view-> tagImgHover($url_ico, ['class' => 'reseau-social-img', - 'alt' => $this->view->_('icone e-mail'), - 'title' => $this->view->_('partager par e-mail'), - 'onclick' => sprintf('window.location=\'%s\'', + 'alt' => $this->view->_('icone formulaire de contact'), + 'title' => $this->view->_('Accéder au formulaire de contact'), + 'onclick' => sprintf('window.location=\'%s\'', $this->view->url(['controller' => 'index', 'action' => 'formulairecontact']))]); } - + } ?> \ No newline at end of file diff --git a/tests/application/modules/opac/controllers/AbonneControllerSettingsTest.php b/tests/application/modules/opac/controllers/AbonneControllerSettingsTest.php index 934698b98be7a86a8aaa1a251218f3530dd102ce..1632c807cfdf2230ba90bdf7c533d4acccef929b 100644 --- a/tests/application/modules/opac/controllers/AbonneControllerSettingsTest.php +++ b/tests/application/modules/opac/controllers/AbonneControllerSettingsTest.php @@ -61,7 +61,13 @@ abstract class AbonneControllerSettingsTestCase extends AbstractControllerTestCa ['id' => 56, 'libelle' => 'MEL']); - + $this->_cinema = $this->fixture('Class_Catalogue', + ['id' => 8, + 'libelle' => 'Danse', + 'sous_domaines' => [ $this->fixture('Class_Catalogue', + ['id' => 81, + 'libelle' => 'Kizomba', + 'indexer' => '1'])]]); $this->_user->setBookmarkedDomains([3]); } } @@ -188,6 +194,7 @@ class AbonneControllerSettingsViewableDomainTest extends AbonneControllerSetting ['id' => 3, 'label' => 'Cinema', 'categories' => [], 'items' => [], 'options' => ['ico' => $icon]], ['id' => 32, 'label' => 'Cinema / Couleurs', 'categories' => [], 'items' => [], 'options' => ['ico' => $icon]], ['id' => 31, 'label' => 'Cinema / Muet', 'categories' => [], 'items' => [], 'options' => ['ico' => $icon]], + ['id' => 81, 'label' => 'Danse / Kizomba', 'categories' => [], 'items' => [], 'options' => ['ico' => $icon]], ['id' => 1, 'label' => 'Music', 'categories' => [], 'items' => [], 'options' => ['ico' => $icon]], ['id' => 2, 'label' => 'Sport', 'categories' => [], 'items' => [], 'options' => ['ico' => $icon]], ], diff --git a/tests/library/ZendAfi/View/Helper/ReseauxSociauxTest.php b/tests/library/ZendAfi/View/Helper/ReseauxSociauxTest.php index 4cdcc449496d4ac5cd117c5e530c19d60095b778..6387331844128eb2538ba0a75984f40a23483923 100644 --- a/tests/library/ZendAfi/View/Helper/ReseauxSociauxTest.php +++ b/tests/library/ZendAfi/View/Helper/ReseauxSociauxTest.php @@ -91,9 +91,11 @@ class ZendAfi_View_Helper_ReseauxSociauxProfileTest extends ZendAfi_View_Helper_ /** @test **/ public function withProfilLinkMailShouldBeOnClickShareByEMailProfilMusique(){ - $this->assertContains('/index/formulairecontact', - $this->_helper->reseauxSociaux($this->_profile, - ['mail' => 'mail'])); + $html = $this->_helper->reseauxSociaux($this->_profile, + ['mail' => 'mail']); + $this->assertXPath($html, + '//div//img[contains(@onclick, "/index/formulairecontact")][contains(@title, "Accéder au formulaire de contact")]', + $html); }