Skip to content
Snippets Groups Projects
Commit be5c0937 authored by Gregor Gawol's avatar Gregor Gawol Committed by Dorian Merz
Browse files

refs #16565 [fid] bug fixing access urls

* regex only for EBC EBooks
** set config
* bug fixing ticket 16523
parent 454180e9
No related merge requests found
...@@ -402,4 +402,15 @@ class GetIt extends AbstractHelper ...@@ -402,4 +402,15 @@ class GetIt extends AbstractHelper
} }
return false; 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;
}
} }
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment