Skip to content
Snippets Groups Projects
Commit 7c4986c0 authored by Josef Moravec's avatar Josef Moravec Committed by Demian Katz
Browse files

Remove ClaviusSQL ILS Driver (#1140)

This driver is probably not used by any library and is not maintained.
parent 154a74e1
Branches
Tags
No related merge requests found
[Catalog]
; mysql host server:
host = mysql.myuniversity.edu
; mysql port:
port = 3306
; mysql username:
username = clavius
; mysql password
password = mypassword
; mysql database - usually clavius
database = clavius
; base URL to your catalog, without ending "l.dll", or "baze.htm"
url = http://www.myuniversity.edu/katalog/
; If you are importing records with id with prefixes (KN3112....) the id_prefix setting needs to be true
id_prefix = true
; if your library enters barcodes to items manually, the use_barcode setting needs to be true, if barcodes are generated by Clavius, use false
use_barcodes = false
; your library's prefix, usually 5-digit number
prefix = 99000
; how long are new items should be hidden in katalog
hide_days = 0
...@@ -180,7 +180,6 @@ session_name = VUFIND_SESSION ...@@ -180,7 +180,6 @@ session_name = VUFIND_SESSION
; Available drivers: ; Available drivers:
; - Aleph ; - Aleph
; - Amicus ; - Amicus
; - ClaviusSQL
; - DAIA (using either XML or JSON API) ; - DAIA (using either XML or JSON API)
; - Demo (fake ILS driver returning complex responses) ; - Demo (fake ILS driver returning complex responses)
; - Evergreen ; - Evergreen
......
This diff is collapsed.
...@@ -46,7 +46,6 @@ class PluginManager extends \VuFind\ServiceManager\AbstractPluginManager ...@@ -46,7 +46,6 @@ class PluginManager extends \VuFind\ServiceManager\AbstractPluginManager
protected $aliases = [ protected $aliases = [
'aleph' => 'VuFind\ILS\Driver\Aleph', 'aleph' => 'VuFind\ILS\Driver\Aleph',
'amicus' => 'VuFind\ILS\Driver\Amicus', 'amicus' => 'VuFind\ILS\Driver\Amicus',
'claviussql' => 'VuFind\ILS\Driver\ClaviusSQL',
'daia' => 'VuFind\ILS\Driver\DAIA', 'daia' => 'VuFind\ILS\Driver\DAIA',
'demo' => 'VuFind\ILS\Driver\Demo', 'demo' => 'VuFind\ILS\Driver\Demo',
'evergreen' => 'VuFind\ILS\Driver\Evergreen', 'evergreen' => 'VuFind\ILS\Driver\Evergreen',
...@@ -80,8 +79,6 @@ class PluginManager extends \VuFind\ServiceManager\AbstractPluginManager ...@@ -80,8 +79,6 @@ class PluginManager extends \VuFind\ServiceManager\AbstractPluginManager
protected $factories = [ protected $factories = [
'VuFind\ILS\Driver\Aleph' => 'VuFind\ILS\Driver\AlephFactory', 'VuFind\ILS\Driver\Aleph' => 'VuFind\ILS\Driver\AlephFactory',
'VuFind\ILS\Driver\Amicus' => 'Zend\ServiceManager\Factory\InvokableFactory', 'VuFind\ILS\Driver\Amicus' => 'Zend\ServiceManager\Factory\InvokableFactory',
'VuFind\ILS\Driver\ClaviusSQL' =>
'Zend\ServiceManager\Factory\InvokableFactory',
'VuFind\ILS\Driver\DAIA' => 'VuFind\ILS\Driver\DAIA' =>
'VuFind\ILS\Driver\DriverWithDateConverterFactory', 'VuFind\ILS\Driver\DriverWithDateConverterFactory',
'VuFind\ILS\Driver\Demo' => 'VuFind\ILS\Driver\DemoFactory', 'VuFind\ILS\Driver\Demo' => 'VuFind\ILS\Driver\DemoFactory',
......
<?php
/**
* ILS driver test
*
* PHP version 5
*
* Copyright (C) Villanova University 2011.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* @category VuFind
* @package Tests
* @author Demian Katz <demian.katz@villanova.edu>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link https://vufind.org Main Page
*/
namespace VuFindTest\ILS\Driver;
use VuFind\ILS\Driver\ClaviusSQL;
/**
* ILS driver test
*
* @category VuFind
* @package Tests
* @author Demian Katz <demian.katz@villanova.edu>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link https://vufind.org Main Page
*/
class ClaviusSQLTest extends \VuFindTest\Unit\ILSDriverTestCase
{
/**
* Standard setup method.
*
* @return void
*/
public function setUp()
{
$this->driver = new ClaviusSQL();
}
}
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