From a010a82236d09d2981b58e78ae79b638f326d2aa Mon Sep 17 00:00:00 2001 From: ayjuillet <ayjuillet@git-test.afi-sa.fr> Date: Mon, 10 Sep 2012 15:23:31 +0000 Subject: [PATCH] =?UTF-8?q?FRBR=20:=20ViewHelper=20et=20d=C3=A9but=20versi?= =?UTF-8?q?on=20t=C3=A9l=C3=A9phone?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitattributes | 2 + .../controllers/RechercheController.php | 16 ++- .../views/scripts/recherche/frbr.phtml | 9 ++ library/ZendAfi/View/Helper/Frbr.php | 111 ++++++++++++++++++ 4 files changed, 136 insertions(+), 2 deletions(-) create mode 100644 application/modules/telephone/views/scripts/recherche/frbr.phtml create mode 100644 library/ZendAfi/View/Helper/Frbr.php diff --git a/.gitattributes b/.gitattributes index 1ffdda707a5..c4670d88afb 100644 --- a/.gitattributes +++ b/.gitattributes @@ -706,6 +706,7 @@ application/modules/telephone/views/scripts/recherche/bibliotheque.phtml -text application/modules/telephone/views/scripts/recherche/biographie.phtml -text application/modules/telephone/views/scripts/recherche/detail.phtml -text application/modules/telephone/views/scripts/recherche/exemplaires.phtml -text +application/modules/telephone/views/scripts/recherche/frbr.phtml -text application/modules/telephone/views/scripts/recherche/grandeimage.phtml -text application/modules/telephone/views/scripts/recherche/index.phtml -text application/modules/telephone/views/scripts/recherche/pickup-location.phtml -text @@ -2082,6 +2083,7 @@ library/ZendAfi/View/Helper/FileInfos.php -text library/ZendAfi/View/Helper/FonctionsAdmin.php -text library/ZendAfi/View/Helper/FormRadioButtons.php -text library/ZendAfi/View/Helper/FormUrl.php -text +library/ZendAfi/View/Helper/Frbr.php -text library/ZendAfi/View/Helper/GallicaPlayer.php -text library/ZendAfi/View/Helper/HistoriqueRecherche.php -text library/ZendAfi/View/Helper/HumanDate.php -text diff --git a/application/modules/telephone/controllers/RechercheController.php b/application/modules/telephone/controllers/RechercheController.php index e6544ff5b0e..fd9dfa6a6f7 100644 --- a/application/modules/telephone/controllers/RechercheController.php +++ b/application/modules/telephone/controllers/RechercheController.php @@ -162,11 +162,23 @@ class Telephone_RechercheController extends RechercheController { } + public function frbrAction() { + $this->view->notice = Class_Notice::getLoader()->find($this->_getParam('id')); + + + + } + + + public function bibliothequeAction() { $this->view->bib = Class_Bib::getLoader()->find($this->_getParam('id')); } + + + protected function _loadUrlRetourForExemplaire($id_exemplaire) { $exemplaire = Class_Exemplaire::getLoader()->find($id_exemplaire); $this->view->url_retour = $this->view->url(array('controller' => 'recherche', @@ -193,5 +205,5 @@ class Telephone_RechercheController extends RechercheController { ->setParam('b', $params['b']) ->setParam('e', $params['e']) ->setParam('a', $params['a']); - } -} + }} + diff --git a/application/modules/telephone/views/scripts/recherche/frbr.phtml b/application/modules/telephone/views/scripts/recherche/frbr.phtml new file mode 100644 index 00000000000..8e28f566b6d --- /dev/null +++ b/application/modules/telephone/views/scripts/recherche/frbr.phtml @@ -0,0 +1,9 @@ +<?php +echo $this->toolbar($this->_("Notice liées"), array('action' => 'vienotice') ,true); +echo '<h1>'.$this->notice->getTitrePrincipal().'</h1>'; + +echo $this->frbr($this->notice); +?> + + + diff --git a/library/ZendAfi/View/Helper/Frbr.php b/library/ZendAfi/View/Helper/Frbr.php new file mode 100644 index 00000000000..87b27b7d136 --- /dev/null +++ b/library/ZendAfi/View/Helper/Frbr.php @@ -0,0 +1,111 @@ +<?php +/** + * Copyright (c) 2012, Agence Française Informatique (AFI). All rights reserved. + * + * AFI-OPAC 2.0 is free software; you can redistribute it and/or modify + * it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by + * the Free Software Foundation. + * + * There are special exceptions to the terms and conditions of the AGPL as it + * is applied to this software (see README file). + * + * AFI-OPAC 2.0 is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE + * along with AFI-OPAC 2.0; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + +class ZendAfi_View_Helper_Frbr extends Zend_View_Helper_HtmlElement{ + const NO_RESULT_MESSAGE = 'Aucun lien n\'a été trouvé'; + + /** + * Retourne les notices liées + * + * @param $model Class_Notice + * @return string + */ + public function frbr($model) { + $this->notice_html = new Class_NoticeHtml(); + $sourceLinks = $model->getLinksAsSource(); + $targetLinks = $model->getLinksAsTarget(); + + if (0 == count($sourceLinks) and 0 == count($targetLinks)) { + + return self::NO_RESULT_MESSAGE; } + + + $html = ''; + foreach ($this->_getLinksBySourceTypes($sourceLinks) as $label => $links) + $html .= $this->_getTargetTypeLinks($label, $links); + + foreach ($this->_getLinksByTargetTypes($targetLinks) as $label => $links) + $html .= $this->_getSourceTypeLinks($label, $links); + return $html; + } + + + protected function _getLinksBySourceTypes($links) { + return $this->_getLinksByType($links, function ($link) { + return $link->getTypeLabelFromSource(); + }); + } + + + protected function _getLinksByTargetTypes($links) { + return $this->_getLinksByType($links, function ($link) { + return $link->getTypeLabelFromTarget(); + }); + } + + + protected function _getLinksByType($links, $callback) { + $byTypes = []; + foreach ($links as $link) { + $typeLabel = $callback($link); + if (!array_key_exists($typeLabel, $byTypes)) + $byTypes[$typeLabel] = []; + + $byTypes[$typeLabel][] = $link; + } + return $byTypes; + } + + + protected function _getTargetTypeLinks($label, $links) { + return $this->_getTypeLinks($label, $links, function($link) { + return $link->getTargetNotice(); + }); + } + + + protected function _getSourceTypeLinks($label, $links) { + return $this->_getTypeLinks($label, $links, function($link) { + return $link->getSourceNotice(); + }); + } + + + protected function _getTypeLinks($label, $links, $callback) { + $html = ''; + if (!$links) + return $html; + + $html .= '<div class="notice_info_titre">' . $label . '</div>'; + $notices = []; + foreach ($links as $link) + $notices[] = $callback($link); + + $html .= $this->notice_html->getListeNotices($notices, $this->view); + + return $html; + } + + +} + + +?> -- GitLab