diff --git a/module/VuFind/src/VuFind/RecordTab/Factory.php b/module/VuFind/src/VuFind/RecordTab/Factory.php index 03b5a91272f7a25eb83344691920450bc1b00b40..c7853fce8f5de812d3f8764c8ddbea414876e7ad 100644 --- a/module/VuFind/src/VuFind/RecordTab/Factory.php +++ b/module/VuFind/src/VuFind/RecordTab/Factory.php @@ -145,13 +145,8 @@ class Factory // ILS driver specifies no holdings, we need to pass in a connection // object: $config = $sm->get('VuFind\Config\PluginManager')->get('config'); - if (isset($config->Site->hideHoldingsTabWhenEmpty) - && $config->Site->hideHoldingsTabWhenEmpty - ) { - $catalog = $sm->get('VuFind\ILS\Connection'); - } else { - $catalog = false; - } + $catalog = ($config->Site->hideHoldingsTabWhenEmpty ?? false) + ? $sm->get('VuFind\ILS\Connection') : null; return new HoldingsILS($catalog); } diff --git a/module/VuFind/src/VuFind/RecordTab/HoldingsILS.php b/module/VuFind/src/VuFind/RecordTab/HoldingsILS.php index 459598251cd950a436be7b2e8c2623e078948af5..bb0108143d8a7edf70d8c0f1553a216c96dd0aef 100644 --- a/module/VuFind/src/VuFind/RecordTab/HoldingsILS.php +++ b/module/VuFind/src/VuFind/RecordTab/HoldingsILS.php @@ -39,9 +39,9 @@ namespace VuFind\RecordTab; class HoldingsILS extends AbstractBase { /** - * ILS connection (or false if not applicable) + * ILS connection (or null if not applicable) * - * @param \VuFind\ILS\Connection|bool + * @param \VuFind\ILS\Connection */ protected $catalog; @@ -49,12 +49,11 @@ class HoldingsILS extends AbstractBase * Constructor * * @param \VuFind\ILS\Connection|bool $catalog ILS connection to use to check - * for holdings before displaying the tab; set to false if no check is needed + * for holdings before displaying the tab; set to null if no check is needed */ - public function __construct($catalog) + public function __construct(\VuFind\ILS\Connection $catalog = null) { - $this->catalog = ($catalog && $catalog instanceof \VuFind\ILS\Connection) - ? $catalog : false; + $this->catalog = $catalog; } /**