Skip to content
Snippets Groups Projects
Commit 110507c9 authored by André Lahmann's avatar André Lahmann
Browse files

* added DAIA->checkForILSTestId() due to previous merge failure

parent bf160aa1
No related merge requests found
......@@ -421,6 +421,22 @@ class DAIA extends \VuFind\ILS\Driver\AbstractBase implements
return rtrim($multiURI, "|");
}
/**
* Autoconfigure tests ILS with getStatus('1') - use this method if you don't
* have a record with id='1' but don't want Autoconfigure to fail on ILS test.
*
* @param string $id Record id to be tested
*
* @return bool
*/
protected function checkForILSTestId($id)
{
if ($id === '1') {
return true;
}
return false;
}
/**
* Parse a DAIA document depending on its type.
*
......
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