diff --git a/module/fid/src/View/Helper/Root/GetIt.php b/module/fid/src/View/Helper/Root/GetIt.php
index 59bce57db1a433d86b53882bb8e31e5d4d75cea6..5c7e2f870abca0fb961db8d3107eff6113700299 100644
--- a/module/fid/src/View/Helper/Root/GetIt.php
+++ b/module/fid/src/View/Helper/Root/GetIt.php
@@ -402,4 +402,15 @@ class GetIt extends AbstractHelper
         }
         return false;
     }
+
+    public function isEBCEBooks()
+    {
+        if (in_array('Online', $this->facetAvail)
+            && in_array($this->sid, $this->_getSourceIds('source_idsV9'))
+            && preg_grep($this->_getNonSourceIds('source_idsV8_8'), $this->collection)
+        ) {
+            return true;
+        }
+        return false;
+    }
 }