diff --git a/cosmogramme/cosmozend/application/modules/cosmo/views/scripts/data-profile/index.phtml b/cosmogramme/cosmozend/application/modules/cosmo/views/scripts/data-profile/index.phtml index 8b9209d6acc9e8fe19a7166c54d0f32a80127faa..a14977fd2f1adeee97056ec89b0a69e8fb9847cf 100644 --- a/cosmogramme/cosmozend/application/modules/cosmo/views/scripts/data-profile/index.phtml +++ b/cosmogramme/cosmozend/application/modules/cosmo/views/scripts/data-profile/index.phtml @@ -12,8 +12,11 @@ echo $this->tag('div', echo $this->tagModelTable($this->data_profiles, [$this->_('Libellé'), - $this->_('Type de fichier')], - ['libelle', 'filetype-label'], + $this->_('Type de fichier'), + $this->_('Format')], + ['libelle', + 'filetype-label', + 'format-label'], [['action' => 'edit', 'content' => $this->boutonIco('type=edit')], ['action' => 'delete', 'content' => $this->boutonIco('type=del')] ], '' ); diff --git a/cosmogramme/cosmozend/tests/application/modules/cosmo/controllers/DataProfileControllerTest.php b/cosmogramme/cosmozend/tests/application/modules/cosmo/controllers/DataProfileControllerTest.php index ccebb79e6af7722d2e411d9ef4781664863befaa..494405d9291e878ee766c557ee43c797882b8aa4 100644 --- a/cosmogramme/cosmozend/tests/application/modules/cosmo/controllers/DataProfileControllerTest.php +++ b/cosmogramme/cosmozend/tests/application/modules/cosmo/controllers/DataProfileControllerTest.php @@ -97,6 +97,12 @@ class Cosmo_DataProfileControllerIndexTest extends Cosmo_DataProfileControllerTe } + /** @test */ + public function thirdTrShouldContainsUnimarcFormat() { + $this->assertXPathContentContains('//table//tr[3]/td[3]', 'Unimarc'); + } + + /** @test */ public function secondTrShouldContainsLinkEditKohaProfile() { $this->assertXPath('//table//tr[2]/td/a[contains(@href, "/cosmo/data-profile/edit/id/56")]'); diff --git a/library/Class/IntProfilDonnees.php b/library/Class/IntProfilDonnees.php index 88605e70eb73df2758e2490b01080d0c255660ac..748013479b36dd1100ef55e7ea4c1e0a72165f36 100644 --- a/library/Class/IntProfilDonnees.php +++ b/library/Class/IntProfilDonnees.php @@ -761,6 +761,11 @@ class Class_IntProfilDonnees extends Storm_Model_Abstract { public function getFiletypeLabel() { return $this->getLoader()->getFileTypes()[$this->getTypeFichier()]; + } + + + public function getFormatLabel() { + return $this->getLoader()->getFormats()[$this->getFormat()]; }