From f0e42fa5b7e52465e985bee2d022bb648753cd0e Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Tue, 12 Mar 2013 13:06:24 -0400 Subject: [PATCH] Eliminated dependency between \VuFind\RecordDriver\WorldCat and \VuFind\Connection\WorldCat. --- .../src/VuFind/RecordDriver/WorldCat.php | 12 ---- .../src/VuFind/View/Helper/Root/WorldCat.php | 70 +++++++++++++++++++ .../RecordTab/holdingsworldcat.phtml | 2 +- .../RecordTab/holdingsworldcat.phtml | 2 +- themes/root/theme.config.php | 5 ++ 5 files changed, 77 insertions(+), 14 deletions(-) create mode 100644 module/VuFind/src/VuFind/View/Helper/Root/WorldCat.php diff --git a/module/VuFind/src/VuFind/RecordDriver/WorldCat.php b/module/VuFind/src/VuFind/RecordDriver/WorldCat.php index 0510ec6a2ad..e59cf6227b2 100644 --- a/module/VuFind/src/VuFind/RecordDriver/WorldCat.php +++ b/module/VuFind/src/VuFind/RecordDriver/WorldCat.php @@ -303,16 +303,4 @@ class WorldCat extends SolrMarc { return $this->getFieldArray('780', array('a', 's', 't')); } - - /** - * Get holdings information from WorldCat. - * - * @return SimpleXMLElement - */ - public function getWorldCatHoldings() - { - $wc = $this->getServiceLocator()->getServiceLocator() - ->get('VuFind\WorldCatConnection'); - return $wc->getHoldings($this->getUniqueId()); - } } diff --git a/module/VuFind/src/VuFind/View/Helper/Root/WorldCat.php b/module/VuFind/src/VuFind/View/Helper/Root/WorldCat.php new file mode 100644 index 00000000000..57e38e8c460 --- /dev/null +++ b/module/VuFind/src/VuFind/View/Helper/Root/WorldCat.php @@ -0,0 +1,70 @@ +<?php +/** + * WorldCat view helper + * + * PHP version 5 + * + * Copyright (C) Villanova University 2010. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2, + * as published by the Free Software Foundation. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + * @category VuFind2 + * @package View_Helpers + * @author Demian Katz <demian.katz@villanova.edu> + * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki + */ +namespace VuFind\View\Helper\Root; +use Zend\View\Helper\AbstractHelper; + +/** + * WorldCat view helper + * + * @category VuFind2 + * @package View_Helpers + * @author Demian Katz <demian.katz@villanova.edu> + * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki + */ +class WorldCat extends AbstractHelper +{ + /** + * WorldCat connection + * + * @var \VuFind\Connection\WorldCat + */ + protected $wc; + + /** + * Constructor + * + * @param \VuFind\Connection\WorldCat $wc WorldCat connection + */ + public function __construct(\VuFind\Connection\WorldCat $wc) + { + $this->wc = $wc; + } + + /** + * Get holdings information from WorldCat. + * + * @param string $id Record ID + * + * @return SimpleXMLElement + */ + public function getHoldings($id) + { + return $this->wc->getHoldings($id); + } +} \ No newline at end of file diff --git a/themes/blueprint/templates/RecordTab/holdingsworldcat.phtml b/themes/blueprint/templates/RecordTab/holdingsworldcat.phtml index 736a051ffc2..f5afadfa6fa 100644 --- a/themes/blueprint/templates/RecordTab/holdingsworldcat.phtml +++ b/themes/blueprint/templates/RecordTab/holdingsworldcat.phtml @@ -1,4 +1,4 @@ -<? $holdings = $this->driver->getWorldCatHoldings(); if ($holdings && count($holdings) > 0): ?> +<? $holdings = $this->worldcat()->getHoldings($this->driver->getUniqueId()); if ($holdings && count($holdings) > 0): ?> <h3><?=$this->transEsc('Holdings at Other Libraries')?></h3> <table cellpadding="2" cellspacing="0" border="0" class="citation" width="100%"> <? foreach ($holdings as $holding): ?> diff --git a/themes/jquerymobile/templates/RecordTab/holdingsworldcat.phtml b/themes/jquerymobile/templates/RecordTab/holdingsworldcat.phtml index 736a051ffc2..f5afadfa6fa 100644 --- a/themes/jquerymobile/templates/RecordTab/holdingsworldcat.phtml +++ b/themes/jquerymobile/templates/RecordTab/holdingsworldcat.phtml @@ -1,4 +1,4 @@ -<? $holdings = $this->driver->getWorldCatHoldings(); if ($holdings && count($holdings) > 0): ?> +<? $holdings = $this->worldcat()->getHoldings($this->driver->getUniqueId()); if ($holdings && count($holdings) > 0): ?> <h3><?=$this->transEsc('Holdings at Other Libraries')?></h3> <table cellpadding="2" cellspacing="0" border="0" class="citation" width="100%"> <? foreach ($holdings as $holding): ?> diff --git a/themes/root/theme.config.php b/themes/root/theme.config.php index 1d8307ece2c..3193669a6c6 100644 --- a/themes/root/theme.config.php +++ b/themes/root/theme.config.php @@ -114,6 +114,11 @@ return array( $sm->getServiceLocator()->get('VuFind\Config')->get('config') ); }, + 'worldcat' => function ($sm) { + return new \VuFind\View\Helper\Root\WorldCat( + $sm->getServiceLocator()->get('VuFind\WorldCatConnection') + ); + } ), 'invokables' => array( 'addellipsis' => 'VuFind\View\Helper\Root\AddEllipsis', -- GitLab