@@ -287,7 +287,7 @@ protected function renderCallnumbers(string $callnumberSetting, array $callnumbe
287287 * reserve: string,
288288 * reserve_message: string,
289289 * callnumberHtml: string,
290- * getThisURI : string,
290+ * getThisURL : string,
291291 * } Summarized availability information
292292 */
293293 protected function getItemStatus (
@@ -298,13 +298,13 @@ protected function getItemStatus(
298298 if (isset ($ this ->getThis )) {
299299 $ urlHelper = $ this ->renderer ->plugin ('url ' );
300300 $ itemIdParams = !empty ($ record [0 ]['item_id ' ]) ? ['query ' => ['item_id ' => $ record [0 ]['item_id ' ]]] : null ;
301- $ getThisURI = $ urlHelper (
301+ $ getThisURL = $ urlHelper (
302302 'record-getthis ' ,
303303 ['id ' => $ record [0 ]['id ' ] ?? null ],
304304 $ itemIdParams
305305 );
306306 } else {
307- $ getThisURI = '' ;
307+ $ getThisURL = '' ;
308308 }
309309 // Summarize call number, location and availability info across all items:
310310 $ callNumbers = $ locations = [];
@@ -360,7 +360,7 @@ protected function getItemStatus(
360360 'reserve_message '
361361 => $ this ->translate ($ reserve ? 'on_reserve ' : 'Not On Reserve ' ),
362362 'callnumberHtml ' => $ this ->renderCallnumbers ($ callnumberSetting , $ callNumber ),
363- 'getThisURI ' => $ getThisURI ,
363+ 'getThisURL ' => $ getThisURL ,
364364 ];
365365 }
366366
@@ -407,21 +407,21 @@ protected function getItemStatusGroup($record, $callnumberSetting)
407407 ) {
408408 $ itemIdParams = !empty ($ locationStatus ['item_id ' ])
409409 ? ['query ' => ['item_id ' => $ locationStatus ['item_id ' ]]] : null ;
410- $ getThisURI = $ urlHelper (
410+ $ getThisURL = $ urlHelper (
411411 'record-getthis ' ,
412412 ['id ' => $ record [0 ]['id ' ] ?? null ],
413413 $ itemIdParams
414414 );
415415 } else {
416- $ getThisURI = '' ;
416+ $ getThisURL = '' ;
417417 }
418418
419419 $ locationInfo = [
420420 'availability ' => $ locationStatus ['availability ' ],
421421 'location ' => $ this ->translateWithPrefix ('location_ ' , $ location ),
422422 'callnumberHtml ' =>
423423 $ this ->renderCallnumbers ($ callnumberSetting , $ locationCallnumbers ),
424- 'getThisURI ' => $ getThisURI ,
424+ 'getThisURL ' => $ getThisURL ,
425425 ];
426426 $ locationList [] = $ locationInfo ;
427427 }
0 commit comments