diff --git a/README.md b/README.md index 5f13d4b65eddd25f222858fe3c4521272c9e0ad7..c029e40d3a407676b1e17a045941ec978982db99 100644 --- a/README.md +++ b/README.md @@ -10,45 +10,4 @@ records. To learn more, visit http://vufind.org. Installation ------------ -WARNING: VuFind 2.0 is a work in progress. - -Instructions ------------- - -1. Install PHP 5.3 and MySQL; the existing installation instructions for VuFind 1.x -will help you set up these dependencies (see http://vufind.org/wiki/installation). - -2. Copy the VuFind 2 code to /usr/local/vufind2 (or another directory of your -choice). - -3. Run the VuFind2 install script: - -cd /usr/local/vufind2 -php install.php - -If you are testing VuFind 2 on a server that is also running VuFind 1.x, be sure you -choose a base path for the URL that does not conflict with VuFind 1.x (/vufind2 -is a good choice). - -4. Load VuFind2's Apache configuration file using the instructions displayed by the -install script. - -5. Ensure that your web server can write to the "local" directories - -sudo chown -R www-data:www-data /usr/local/vufind2/local - -(Note that this step may vary depending on your operating system -- you may need to -replace www-data with apache). - -6. To finish configuration, navigate to http://your-vufind-server/vufind2/Install and -follow the on-screen instructions. If you are upgrading from VuFind 1.x, navigate to -http://your-vufind-server/vufind2/Upgrade instead. - -7. If you run into problems, uncomment the "SetEnv VUFIND_ENV development" line in -/usr/local/vufind2/local/httpd-vufind.conf and restart Apache to see more detailed -error messages. - --------------------------------- - -You should now have a working VuFind 2.0 instance running at -http://your-vufind-server/vufind2 +See online documentation at http://vufind.org/wiki/vufind2:installation_notes \ No newline at end of file diff --git a/config/vufind/searches.ini b/config/vufind/searches.ini index d6f5f4d77ef36eb9219f6a275434db8ee8977b8a..3ed96c1210344fe28c2da1fbbc43c9b85ec521fb 100644 --- a/config/vufind/searches.ini +++ b/config/vufind/searches.ini @@ -259,7 +259,7 @@ CallNumber = callnumber ; You can build your own recommendations modules if you wish. See the developer's ; guide here: ; -; http://vufind.org/wiki/building_a_recommendations_module +; http://vufind.org/wiki/vufind2:recommendation_modules [SideRecommendations] ; No search-specific settings by default -- add your own here. ;Subject[] = SideFacets @@ -347,7 +347,7 @@ sort = "last_indexed desc" ; You can build your own autocomplete modules if you wish. See the developer's ; guide here: ; -; http://vufind.org/wiki/autocomplete +; http://vufind.org/wiki/vufind2:autosuggesters [Autocomplete] ; Set this to false to disable all autocomplete behavior enabled = true diff --git a/install.php b/install.php index d3d7bef5d06f32c3e25cffbb086f2df257566338..07571a59431b9784a7d65a9fc4c16dcc34e3d7dd 100644 --- a/install.php +++ b/install.php @@ -23,7 +23,7 @@ * @package Installer * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/automation Wiki + * @link http://vufind.org/wiki/vufind2:installation_notes Wiki */ define('MULTISITE_NONE', 0); define('MULTISITE_DIR_BASED', 1); diff --git a/module/VuFind/src/VuFind/Auth/Database.php b/module/VuFind/src/VuFind/Auth/Database.php index ee57e90cb2baa589131e03362d684bf37ccece27..5f6b24de29135c937c90b006f787a9b39229c4d3 100644 --- a/module/VuFind/src/VuFind/Auth/Database.php +++ b/module/VuFind/src/VuFind/Auth/Database.php @@ -25,7 +25,7 @@ * @author Franck Borel <franck.borel@gbv.de> * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_authentication_handler Wiki + * @link http://vufind.org/wiki/vufind2:authentication_handlers Wiki */ namespace VuFind\Auth; use VuFind\Exception\Auth as AuthException, Zend\Crypt\Password\Bcrypt; @@ -39,7 +39,7 @@ use VuFind\Exception\Auth as AuthException, Zend\Crypt\Password\Bcrypt; * @author Franck Borel <franck.borel@gbv.de> * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_authentication_handler Wiki + * @link http://vufind.org/wiki/vufind2:authentication_handlers Wiki */ class Database extends AbstractBase { diff --git a/module/VuFind/src/VuFind/Auth/ILS.php b/module/VuFind/src/VuFind/Auth/ILS.php index 074b5013f054a4ba42ed524468bee79806b432a4..fdbfe22cd773922bb3f208a20c03a9969ff80eec 100644 --- a/module/VuFind/src/VuFind/Auth/ILS.php +++ b/module/VuFind/src/VuFind/Auth/ILS.php @@ -24,7 +24,7 @@ * @author Franck Borel <franck.borel@gbv.de> * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_authentication_handler Wiki + * @link http://vufind.org/wiki/vufind2:authentication_handlers Wiki */ namespace VuFind\Auth; use VuFind\Exception\Auth as AuthException; @@ -37,7 +37,7 @@ use VuFind\Exception\Auth as AuthException; * @author Franck Borel <franck.borel@gbv.de> * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_authentication_handler Wiki + * @link http://vufind.org/wiki/vufind2:authentication_handlers Wiki */ class ILS extends AbstractBase { diff --git a/module/VuFind/src/VuFind/Auth/LDAP.php b/module/VuFind/src/VuFind/Auth/LDAP.php index 33a9b729e68758fc24ec39b785fdb4ccc4d23c44..c907870bd3ea64f9a8895b1146086670798edc52 100644 --- a/module/VuFind/src/VuFind/Auth/LDAP.php +++ b/module/VuFind/src/VuFind/Auth/LDAP.php @@ -24,7 +24,7 @@ * @author Franck Borel <franck.borel@gbv.de> * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_authentication_handler Wiki + * @link http://vufind.org/wiki/vufind2:authentication_handlers Wiki */ namespace VuFind\Auth; use VuFind\Exception\Auth as AuthException; @@ -37,7 +37,7 @@ use VuFind\Exception\Auth as AuthException; * @author Franck Borel <franck.borel@gbv.de> * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_authentication_handler Wiki + * @link http://vufind.org/wiki/vufind2:authentication_handlers Wiki */ class LDAP extends AbstractBase { diff --git a/module/VuFind/src/VuFind/Auth/MultiAuth.php b/module/VuFind/src/VuFind/Auth/MultiAuth.php index dcc1a8cf5fa740491a1b0bb22f153044a34d449d..055ed057843e84df12f1167e7a659dc1e1660852 100644 --- a/module/VuFind/src/VuFind/Auth/MultiAuth.php +++ b/module/VuFind/src/VuFind/Auth/MultiAuth.php @@ -23,7 +23,7 @@ * @package Authentication * @author Sam Moffatt <vufind-tech@lists.sourceforge.net> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_authentication_handler Wiki + * @link http://vufind.org/wiki/vufind2:authentication_handlers Wiki */ namespace VuFind\Auth; use VuFind\Exception\Auth as AuthException; @@ -59,7 +59,7 @@ use VuFind\Exception\Auth as AuthException; * @package Authentication * @author Sam Moffatt <vufind-tech@lists.sourceforge.net> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_authentication_handler Wiki + * @link http://vufind.org/wiki/vufind2:authentication_handlers Wiki */ class MultiAuth extends AbstractBase { diff --git a/module/VuFind/src/VuFind/Auth/SIP2.php b/module/VuFind/src/VuFind/Auth/SIP2.php index 931889bfeaf2ada03074cc30aed17316718baed2..a64404243fdc1352a1458ba7a5a79471e9a8edf2 100644 --- a/module/VuFind/src/VuFind/Auth/SIP2.php +++ b/module/VuFind/src/VuFind/Auth/SIP2.php @@ -24,7 +24,7 @@ * @author Franck Borel <franck.borel@gbv.de> * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_authentication_handler Wiki + * @link http://vufind.org/wiki/vufind2:authentication_handlers Wiki */ namespace VuFind\Auth; use VuFind\Exception\Auth as AuthException; @@ -37,7 +37,7 @@ use VuFind\Exception\Auth as AuthException; * @author Franck Borel <franck.borel@gbv.de> * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_authentication_handler Wiki + * @link http://vufind.org/wiki/vufind2:authentication_handlers Wiki */ class SIP2 extends AbstractBase { diff --git a/module/VuFind/src/VuFind/Autocomplete/AutocompleteInterface.php b/module/VuFind/src/VuFind/Autocomplete/AutocompleteInterface.php index 96b18a39464439a1483ee84bee6b7964616e1ea3..4df2eb046fac76a31364a950700b8ec6d5ff3de6 100644 --- a/module/VuFind/src/VuFind/Autocomplete/AutocompleteInterface.php +++ b/module/VuFind/src/VuFind/Autocomplete/AutocompleteInterface.php @@ -24,7 +24,7 @@ * @author Demian Katz <demian.katz@villanova.edu> * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/autocomplete Wiki + * @link http://vufind.org/wiki/vufind2:autosuggesters Wiki */ namespace VuFind\Autocomplete; @@ -38,7 +38,7 @@ namespace VuFind\Autocomplete; * @package Autocomplete * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/autocomplete Wiki + * @link http://vufind.org/wiki/vufind2:autosuggesters Wiki */ interface AutocompleteInterface { diff --git a/module/VuFind/src/VuFind/Autocomplete/None.php b/module/VuFind/src/VuFind/Autocomplete/None.php index dbee88328fd0438c5f965d0e010055b1b69f8342..05985433e942ff895300fabd6dfa8f1b820aed5c 100644 --- a/module/VuFind/src/VuFind/Autocomplete/None.php +++ b/module/VuFind/src/VuFind/Autocomplete/None.php @@ -24,7 +24,7 @@ * @author Demian Katz <demian.katz@villanova.edu> * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/autocomplete Wiki + * @link http://vufind.org/wiki/vufind2:autosuggesters Wiki */ namespace VuFind\Autocomplete; @@ -37,7 +37,7 @@ namespace VuFind\Autocomplete; * @package Autocomplete * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/autocomplete Wiki + * @link http://vufind.org/wiki/vufind2:autosuggesters Wiki */ class None implements AutocompleteInterface { diff --git a/module/VuFind/src/VuFind/Autocomplete/OCLCIdentities.php b/module/VuFind/src/VuFind/Autocomplete/OCLCIdentities.php index 74eff8e736d61413db7de0ad548ec7a4c922c81a..7560508befd3dcf2c5db82f35a966f2a6afe3c29 100644 --- a/module/VuFind/src/VuFind/Autocomplete/OCLCIdentities.php +++ b/module/VuFind/src/VuFind/Autocomplete/OCLCIdentities.php @@ -24,7 +24,7 @@ * @author Demian Katz <demian.katz@villanova.edu> * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/autocomplete Wiki + * @link http://vufind.org/wiki/vufind2:autosuggesters Wiki */ namespace VuFind\Autocomplete; @@ -37,7 +37,7 @@ namespace VuFind\Autocomplete; * @package Autocomplete * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/autocomplete Wiki + * @link http://vufind.org/wiki/vufind2:autosuggesters Wiki */ class OCLCIdentities implements AutocompleteInterface { diff --git a/module/VuFind/src/VuFind/Autocomplete/PluginFactory.php b/module/VuFind/src/VuFind/Autocomplete/PluginFactory.php index 5e3025670cc8880b7d59dca4fc8bba69f0dff003..0968949966f146e9325f382af3237f97f5d1ef44 100644 --- a/module/VuFind/src/VuFind/Autocomplete/PluginFactory.php +++ b/module/VuFind/src/VuFind/Autocomplete/PluginFactory.php @@ -23,7 +23,7 @@ * @package Autocomplete * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:autosuggesters Wiki */ namespace VuFind\Autocomplete; @@ -34,7 +34,7 @@ namespace VuFind\Autocomplete; * @package Autocomplete * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:autosuggesters Wiki */ class PluginFactory extends \VuFind\ServiceManager\AbstractPluginFactory { diff --git a/module/VuFind/src/VuFind/Autocomplete/PluginManager.php b/module/VuFind/src/VuFind/Autocomplete/PluginManager.php index 24e60d4d9b84055487a4443da28c2f1fdf3b4976..90a9b3854d977d7833399eecdcfe9eb7e3677f83 100644 --- a/module/VuFind/src/VuFind/Autocomplete/PluginManager.php +++ b/module/VuFind/src/VuFind/Autocomplete/PluginManager.php @@ -23,7 +23,7 @@ * @package Autocomplete * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:autosuggesters Wiki */ namespace VuFind\Autocomplete; use VuFind\Config\Reader as ConfigReader; @@ -35,7 +35,7 @@ use VuFind\Config\Reader as ConfigReader; * @package Autocomplete * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:autosuggesters Wiki */ class PluginManager extends \VuFind\ServiceManager\AbstractPluginManager { diff --git a/module/VuFind/src/VuFind/Autocomplete/Solr.php b/module/VuFind/src/VuFind/Autocomplete/Solr.php index 690b5d48017a81d69f7928222dc5b779fb580724..969455f9983b8cac0767cbb5f050b9fce131a1b8 100644 --- a/module/VuFind/src/VuFind/Autocomplete/Solr.php +++ b/module/VuFind/src/VuFind/Autocomplete/Solr.php @@ -24,7 +24,7 @@ * @author Demian Katz <demian.katz@villanova.edu> * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/autocomplete Wiki + * @link http://vufind.org/wiki/vufind2:autosuggesters Wiki */ namespace VuFind\Autocomplete; use Zend\ServiceManager\ServiceLocatorAwareInterface, @@ -39,7 +39,7 @@ use Zend\ServiceManager\ServiceLocatorAwareInterface, * @package Autocomplete * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/autocomplete Wiki + * @link http://vufind.org/wiki/vufind2:autosuggesters Wiki */ class Solr implements AutocompleteInterface, ServiceLocatorAwareInterface { diff --git a/module/VuFind/src/VuFind/Autocomplete/SolrAuth.php b/module/VuFind/src/VuFind/Autocomplete/SolrAuth.php index b8efbcda43d4bb682d7fd9038d8538ce87281724..3ddce9ea7dab18fdc3e998af0333e9df6420a7d9 100644 --- a/module/VuFind/src/VuFind/Autocomplete/SolrAuth.php +++ b/module/VuFind/src/VuFind/Autocomplete/SolrAuth.php @@ -24,7 +24,7 @@ * @author Demian Katz <demian.katz@villanova.edu> * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/autocomplete Wiki + * @link http://vufind.org/wiki/vufind2:autosuggesters Wiki */ namespace VuFind\Autocomplete; @@ -37,7 +37,7 @@ namespace VuFind\Autocomplete; * @package Autocomplete * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/autocomplete Wiki + * @link http://vufind.org/wiki/vufind2:autosuggesters Wiki */ class SolrAuth extends Solr { diff --git a/module/VuFind/src/VuFind/Autocomplete/SolrCN.php b/module/VuFind/src/VuFind/Autocomplete/SolrCN.php index aa8c3de625a88df51b389f5c3f40d24e5d24e740..48f7df2918d9dfdb01c330e9835d93dc5f580e62 100644 --- a/module/VuFind/src/VuFind/Autocomplete/SolrCN.php +++ b/module/VuFind/src/VuFind/Autocomplete/SolrCN.php @@ -24,7 +24,7 @@ * @author Demian Katz <demian.katz@villanova.edu> * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/autocomplete Wiki + * @link http://vufind.org/wiki/vufind2:autosuggesters Wiki */ namespace VuFind\Autocomplete; @@ -37,7 +37,7 @@ namespace VuFind\Autocomplete; * @package Autocomplete * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/autocomplete Wiki + * @link http://vufind.org/wiki/vufind2:autosuggesters Wiki */ class SolrCN extends Solr { diff --git a/module/VuFind/src/VuFind/Autocomplete/SolrReserves.php b/module/VuFind/src/VuFind/Autocomplete/SolrReserves.php index 73851191d250d3103cda8bb505dfa37d793766e0..7ac779b68d54416edbdde6ed33dc9b6dccf0bdbb 100644 --- a/module/VuFind/src/VuFind/Autocomplete/SolrReserves.php +++ b/module/VuFind/src/VuFind/Autocomplete/SolrReserves.php @@ -24,7 +24,7 @@ * @author Tuan Nguyen <tuan@yorku.ca> * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/autocomplete Wiki + * @link http://vufind.org/wiki/vufind2:autosuggesters Wiki */ namespace VuFind\Autocomplete; @@ -37,7 +37,7 @@ namespace VuFind\Autocomplete; * @package Autocomplete * @author Tuan Nguyen <tuan@yorku.ca> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/autocomplete Wiki + * @link http://vufind.org/wiki/vufind2:autosuggesters Wiki */ class SolrReserves extends Solr { diff --git a/module/VuFind/src/VuFind/Autocomplete/Tag.php b/module/VuFind/src/VuFind/Autocomplete/Tag.php index f3fa0192af7fe332b758e48de3b4cc879533bc60..db7366e46d6ba808930a71f37faaeb7ded626ab1 100644 --- a/module/VuFind/src/VuFind/Autocomplete/Tag.php +++ b/module/VuFind/src/VuFind/Autocomplete/Tag.php @@ -23,7 +23,7 @@ * @package Autocomplete * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/autocomplete Wiki + * @link http://vufind.org/wiki/vufind2:autosuggesters Wiki */ namespace VuFind\Autocomplete; @@ -36,7 +36,7 @@ namespace VuFind\Autocomplete; * @package Autocomplete * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/autocomplete Wiki + * @link http://vufind.org/wiki/vufind2:autosuggesters Wiki */ class Tag implements AutocompleteInterface, \VuFind\Db\Table\DbTableAwareInterface { diff --git a/module/VuFind/src/VuFind/Cart.php b/module/VuFind/src/VuFind/Cart.php index a6bae49ac2e30225c473f6f16d811a1b1abe476c..1772970f714880de52c4a35e6048394a1c060622 100644 --- a/module/VuFind/src/VuFind/Cart.php +++ b/module/VuFind/src/VuFind/Cart.php @@ -23,7 +23,7 @@ * @package Cart * @author Tuan Nguyen <tuan@yorku.ca> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind; @@ -36,7 +36,7 @@ namespace VuFind; * @package Cart * @author Tuan Nguyen <tuan@yorku.ca> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Cart { diff --git a/module/VuFind/src/VuFind/Connection/Manager.php b/module/VuFind/src/VuFind/Connection/Manager.php index f6db71da77115289e35aead24ba1024d09103480..8e13b84201c4b383ea00da2b497550fef6d79e1a 100644 --- a/module/VuFind/src/VuFind/Connection/Manager.php +++ b/module/VuFind/src/VuFind/Connection/Manager.php @@ -23,7 +23,7 @@ * @package Connection * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\Connection; @@ -37,7 +37,7 @@ use VuFind\Config\Reader as ConfigReader, VuFind\ILS\Connection as ILSConnection * @package Connection * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Manager { diff --git a/module/VuFind/src/VuFind/Connection/OpenLibrary.php b/module/VuFind/src/VuFind/Connection/OpenLibrary.php index b2aeca1c1c9aca70d89c1cd0f9f764f4719af2be..2e27d5d4e34d28e90ce5a7b96cac5c3cfcd7a47f 100644 --- a/module/VuFind/src/VuFind/Connection/OpenLibrary.php +++ b/module/VuFind/src/VuFind/Connection/OpenLibrary.php @@ -23,7 +23,7 @@ * @package OpenLibrary * @author Eoghan Ó Carragáin <eoghan.ocarragain@gmail.com> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\Connection; @@ -36,7 +36,7 @@ namespace VuFind\Connection; * @package OpenLibrary * @author Eoghan Ó Carragáin <eoghan.ocarragain@gmail.com> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class OpenLibrary { diff --git a/module/VuFind/src/VuFind/Connection/Oracle.php b/module/VuFind/src/VuFind/Connection/Oracle.php index 1ef9926d30779ea4a34ee49f8b0fcddac63f94d5..7f7d8d0b8940bf47f16b9a8c0c8ce1f80a277466 100644 --- a/module/VuFind/src/VuFind/Connection/Oracle.php +++ b/module/VuFind/src/VuFind/Connection/Oracle.php @@ -23,7 +23,7 @@ * @package Oracle * @author Greg Pendlebury <vufind-tech@lists.sourceforge.net> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\Connection; @@ -34,7 +34,7 @@ namespace VuFind\Connection; * @package Oracle * @author Greg Pendlebury <vufind-tech@lists.sourceforge.net> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Oracle { diff --git a/module/VuFind/src/VuFind/Connection/SRU.php b/module/VuFind/src/VuFind/Connection/SRU.php index db414b43aa3e7a53757f6e3a3667c19c476d3594..14f59f53be5db3161feae4a09bd69ffae81b8459 100644 --- a/module/VuFind/src/VuFind/Connection/SRU.php +++ b/module/VuFind/src/VuFind/Connection/SRU.php @@ -23,7 +23,7 @@ * @package SRU * @author Andrew S. Nagy <vufind-tech@lists.sourceforge.net> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes#searching Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\Connection; use VuFind\XSLT\Processor as XSLTProcessor, Zend\Log\LoggerInterface; @@ -35,7 +35,7 @@ use VuFind\XSLT\Processor as XSLTProcessor, Zend\Log\LoggerInterface; * @package SRU * @author Andrew S. Nagy <vufind-tech@lists.sourceforge.net> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes#searching Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class SRU implements \Zend\Log\LoggerAwareInterface { diff --git a/module/VuFind/src/VuFind/Connection/Solr.php b/module/VuFind/src/VuFind/Connection/Solr.php index 71a3d7da5c6c3d903cbba7e683b1ff6078743bf9..096ead893849a797c7129dd0f1127fef21371d15 100644 --- a/module/VuFind/src/VuFind/Connection/Solr.php +++ b/module/VuFind/src/VuFind/Connection/Solr.php @@ -24,7 +24,7 @@ * @author Andrew S. Nagy <vufind-tech@lists.sourceforge.net> * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes#index_interface Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\Connection; use VuFind\Config\Reader as ConfigReader, VuFind\Exception\Solr as SolrException, @@ -39,7 +39,7 @@ use VuFind\Config\Reader as ConfigReader, VuFind\Exception\Solr as SolrException * @package Solr * @author Andrew S. Nagy <vufind-tech@lists.sourceforge.net> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes#index_interface Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Solr implements ServiceLocatorAwareInterface, \VuFindHttp\HttpServiceAwareInterface, \Zend\Log\LoggerAwareInterface diff --git a/module/VuFind/src/VuFind/Connection/SolrAuth.php b/module/VuFind/src/VuFind/Connection/SolrAuth.php index c2d3be4e53b50f1987283fe6fbc7e0bcb3cfafb5..e480e20f4b4e8e4dde64459976caa640402a7dcb 100644 --- a/module/VuFind/src/VuFind/Connection/SolrAuth.php +++ b/module/VuFind/src/VuFind/Connection/SolrAuth.php @@ -24,7 +24,7 @@ * @author Andrew S. Nagy <vufind-tech@lists.sourceforge.net> * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes#index_interface Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\Connection; @@ -38,7 +38,7 @@ namespace VuFind\Connection; * @author Andrew S. Nagy <vufind-tech@lists.sourceforge.net> * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes#index_interface Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class SolrAuth extends Solr { diff --git a/module/VuFind/src/VuFind/Connection/SolrReserves.php b/module/VuFind/src/VuFind/Connection/SolrReserves.php index 937d5b9a509b93bcb16365646f1476b54c5e5a40..3008eed952e5f5902fcb18611eb8aa1400be32d9 100644 --- a/module/VuFind/src/VuFind/Connection/SolrReserves.php +++ b/module/VuFind/src/VuFind/Connection/SolrReserves.php @@ -23,7 +23,7 @@ * @package Solr * @author Tuan Nguyen <tuan@yorku.ca> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes#index_interface Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\Connection; @@ -36,7 +36,7 @@ namespace VuFind\Connection; * @package Solr * @author Tuan Nguyen <tuan@yorku.ca> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes#index_interface Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class SolrReserves extends Solr { diff --git a/module/VuFind/src/VuFind/Connection/SolrStats.php b/module/VuFind/src/VuFind/Connection/SolrStats.php index 4b759ea66a2041be2d374513d842a8f91d8923cf..e66f9ba4e553668f66bf46b463fc89ecfdd55b7c 100644 --- a/module/VuFind/src/VuFind/Connection/SolrStats.php +++ b/module/VuFind/src/VuFind/Connection/SolrStats.php @@ -24,7 +24,7 @@ * @author Andrew S. Nagy <vufind-tech@lists.sourceforge.net> * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes#index_interface Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\Connection; @@ -38,7 +38,7 @@ namespace VuFind\Connection; * @author Andrew S. Nagy <vufind-tech@lists.sourceforge.net> * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes#index_interface Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class SolrStats extends Solr { diff --git a/module/VuFind/src/VuFind/Connection/WorldCat.php b/module/VuFind/src/VuFind/Connection/WorldCat.php index e486229c824b86b65fe06df35e17c50503997363..862c939454e6a672af414e543566a13ffeefd626 100644 --- a/module/VuFind/src/VuFind/Connection/WorldCat.php +++ b/module/VuFind/src/VuFind/Connection/WorldCat.php @@ -24,7 +24,7 @@ * @author Andrew S. Nagy <vufind-tech@lists.sourceforge.net> * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\Connection; use VuFind\Config\Reader as ConfigReader; @@ -36,7 +36,7 @@ use VuFind\Config\Reader as ConfigReader; * @package WorldCat * @author Andrew S. Nagy <vufind-tech@lists.sourceforge.net> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class WorldCat extends SRU { diff --git a/module/VuFind/src/VuFind/Connection/WorldCatUtils.php b/module/VuFind/src/VuFind/Connection/WorldCatUtils.php index 04e6456489a755f9ee6fe480f5bdd4c931c8dbce..a5668984969cd84fd0b541fcc89dd5afb9bbfb10 100644 --- a/module/VuFind/src/VuFind/Connection/WorldCatUtils.php +++ b/module/VuFind/src/VuFind/Connection/WorldCatUtils.php @@ -23,7 +23,7 @@ * @package WorldCat * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\Connection; use File_MARCXML, VuFind\Config\Reader as ConfigReader, @@ -38,7 +38,7 @@ use File_MARCXML, VuFind\Config\Reader as ConfigReader, * @package WorldCat * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class WorldCatUtils implements \Zend\Log\LoggerAwareInterface { diff --git a/module/VuFind/src/VuFind/Controller/AbstractBase.php b/module/VuFind/src/VuFind/Controller/AbstractBase.php index 601308f226f16abbff0d4aaf5885c0c88aeb363f..4734427500e9775fa962b8d26108c8bcad8490cc 100644 --- a/module/VuFind/src/VuFind/Controller/AbstractBase.php +++ b/module/VuFind/src/VuFind/Controller/AbstractBase.php @@ -24,7 +24,7 @@ * @package Controller * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:building_a_controller Wiki */ namespace VuFind\Controller; use Zend\Mvc\Controller\AbstractActionController, Zend\View\Model\ViewModel; @@ -37,7 +37,7 @@ use Zend\Mvc\Controller\AbstractActionController, Zend\View\Model\ViewModel; * @package Controller * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:building_a_controller Wiki */ class AbstractBase extends AbstractActionController { diff --git a/module/VuFind/src/VuFind/Controller/AbstractRecord.php b/module/VuFind/src/VuFind/Controller/AbstractRecord.php index d74b9bf194ab533266c16aae0e3e56b7278d532f..0a592eaa3cd3269c59d927f1e00de7c8f18151c4 100644 --- a/module/VuFind/src/VuFind/Controller/AbstractRecord.php +++ b/module/VuFind/src/VuFind/Controller/AbstractRecord.php @@ -23,7 +23,7 @@ * @package Controller * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:building_a_controller Wiki */ namespace VuFind\Controller; use VuFind\Exception\Mail as MailException, VuFind\Export, @@ -36,7 +36,7 @@ use VuFind\Exception\Mail as MailException, VuFind\Export, * @package Controller * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:building_a_controller Wiki */ class AbstractRecord extends AbstractBase { diff --git a/module/VuFind/src/VuFind/Controller/AjaxController.php b/module/VuFind/src/VuFind/Controller/AjaxController.php index 41d714f1b583af51b3f0133aa35d5502e35780f7..f70d4416c363c44f0cf67be3dab648777a52727d 100644 --- a/module/VuFind/src/VuFind/Controller/AjaxController.php +++ b/module/VuFind/src/VuFind/Controller/AjaxController.php @@ -23,7 +23,7 @@ * @package Controller * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:building_a_controller Wiki */ namespace VuFind\Controller; use VuFind\Config\Reader as ConfigReader, @@ -36,7 +36,7 @@ use VuFind\Config\Reader as ConfigReader, * @package Controller * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:building_a_controller Wiki */ class AjaxController extends AbstractBase { diff --git a/module/VuFind/src/VuFind/Controller/BrowseController.php b/module/VuFind/src/VuFind/Controller/BrowseController.php index 31fa42b72c76333d4b83292c840cc048233d7556..36738cd5e89f53a5c3e4abf6f4c853fab588993a 100644 --- a/module/VuFind/src/VuFind/Controller/BrowseController.php +++ b/module/VuFind/src/VuFind/Controller/BrowseController.php @@ -23,7 +23,7 @@ * @package Controller * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/alphabetical_heading_browse Wiki + * @link http://vufind.org/wiki/vufind2:building_a_controller Wiki */ namespace VuFind\Controller; use VuFind\Config\Reader as ConfigReader; @@ -37,7 +37,7 @@ use VuFind\Config\Reader as ConfigReader; * @package Controller * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/alphabetical_heading_browse Wiki + * @link http://vufind.org/wiki/vufind2:building_a_controller Wiki */ class BrowseController extends AbstractBase { diff --git a/module/VuFind/src/VuFind/Controller/HierarchyController.php b/module/VuFind/src/VuFind/Controller/HierarchyController.php index ec8109bd65c8d989f22a18f1bfdfb70ab0ec7604..a1b6c5a3c3f772ff833ad695c8bb427588003683 100644 --- a/module/VuFind/src/VuFind/Controller/HierarchyController.php +++ b/module/VuFind/src/VuFind/Controller/HierarchyController.php @@ -23,7 +23,7 @@ * @package Controller * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:building_a_controller Wiki */ namespace VuFind\Controller; @@ -34,7 +34,7 @@ namespace VuFind\Controller; * @package Controller * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:building_a_controller Wiki */ class HierarchyController extends AbstractBase { diff --git a/module/VuFind/src/VuFind/Controller/InstallController.php b/module/VuFind/src/VuFind/Controller/InstallController.php index 618240308d757da257dda9afc06ab9f53e5359a1..ad4edf7ad89cfec08e9b5c8d7f798d3580e60b83 100644 --- a/module/VuFind/src/VuFind/Controller/InstallController.php +++ b/module/VuFind/src/VuFind/Controller/InstallController.php @@ -270,7 +270,7 @@ class InstallController extends AbstractBase = "Your PHP installation appears to be missing the mbstring plug-in." ." For better language support, it is recommended that you add this." ." For details on how to do this, see " - ."http://vufind.org/wiki/installation " + ."http://vufind.org/wiki/vufind2:installation_notes " ."and look at the PHP installation instructions for your platform."; $this->flashMessenger()->setNamespace('error')->addMessage($msg); $problems++; @@ -282,7 +282,7 @@ class InstallController extends AbstractBase = "Your PHP installation appears to be missing the GD plug-in. " . "For better graphics support, it is recommended that you add this." . " For details on how to do this, see " - . "http://vufind.org/wiki/installation " + . "http://vufind.org/wiki/vufind2:installation_notes " . "and look at the PHP installation instructions for your platform."; $this->flashMessenger()->setNamespace('error')->addMessage($msg); $problems++; @@ -294,7 +294,7 @@ class InstallController extends AbstractBase = "Your PHP installation appears to be missing the mcrypt plug-in." ." For better security support, it is recommended that you add this." ." For details on how to do this, see " - ."http://vufind.org/wiki/installation " + ."http://vufind.org/wiki/vufind2:installation_notes " ."and look at the PHP installation instructions for your platform."; } diff --git a/module/VuFind/src/VuFind/Controller/OaiController.php b/module/VuFind/src/VuFind/Controller/OaiController.php index a8bc183c9231d9e2cbb4c94c48d0171d10bb08c2..653d714df0c868296062bd84ed685ff8e0be725a 100644 --- a/module/VuFind/src/VuFind/Controller/OaiController.php +++ b/module/VuFind/src/VuFind/Controller/OaiController.php @@ -23,7 +23,7 @@ * @package Controller * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/alphabetical_heading_browse Wiki + * @link http://vufind.org/wiki/vufind2:building_a_controller Wiki */ namespace VuFind\Controller; use VuFind\Config\Reader as ConfigReader; @@ -37,7 +37,7 @@ use VuFind\Config\Reader as ConfigReader; * @package Controller * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/alphabetical_heading_browse Wiki + * @link http://vufind.org/wiki/vufind2:building_a_controller Wiki */ class OaiController extends AbstractBase { diff --git a/module/VuFind/src/VuFind/Controller/Plugin/ResultScroller.php b/module/VuFind/src/VuFind/Controller/Plugin/ResultScroller.php index cc6caabf64afe9e08405c54266f306e590416f28..cfa60d88d2ee2866b13c3ef16f43887b333f80fa 100644 --- a/module/VuFind/src/VuFind/Controller/Plugin/ResultScroller.php +++ b/module/VuFind/src/VuFind/Controller/Plugin/ResultScroller.php @@ -23,7 +23,7 @@ * @package Controller_Plugins * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\Controller\Plugin; use VuFind\Config\Reader as ConfigReader, VuFind\Search\Memory, @@ -37,7 +37,7 @@ use VuFind\Config\Reader as ConfigReader, VuFind\Search\Memory, * @package Controller_Plugins * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class ResultScroller extends AbstractPlugin { diff --git a/module/VuFind/src/VuFind/Cookie/Container.php b/module/VuFind/src/VuFind/Cookie/Container.php index ac274214da5537d834491b789549fa80362da9ee..0504e047b0289d9d2de3fcc16995841e8d487c29 100644 --- a/module/VuFind/src/VuFind/Cookie/Container.php +++ b/module/VuFind/src/VuFind/Cookie/Container.php @@ -24,7 +24,7 @@ * @package Cookie * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\Cookie; @@ -36,7 +36,7 @@ namespace VuFind\Cookie; * @package Cookie * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Container { diff --git a/module/VuFind/src/VuFind/Crypt/HMAC.php b/module/VuFind/src/VuFind/Crypt/HMAC.php index 71526ee9c8a26aed3469ff92e1fb32e4d33bcbd6..0725c8a9ae1649009c8b6c74d00d30fb5423174e 100644 --- a/module/VuFind/src/VuFind/Crypt/HMAC.php +++ b/module/VuFind/src/VuFind/Crypt/HMAC.php @@ -23,7 +23,7 @@ * @package Crypt * @author Luke O'Sullivan <l.osullivan@swansea.ac.uk> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\Crypt; use VuFind\Config\Reader as ConfigReader; @@ -35,7 +35,7 @@ use VuFind\Config\Reader as ConfigReader; * @package Crypt * @author Luke O'Sullivan <l.osullivan@swansea.ac.uk> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class HMAC { diff --git a/module/VuFind/src/VuFind/Date/Converter.php b/module/VuFind/src/VuFind/Date/Converter.php index 221b4d351707e0cc43c0e98f4944d9ea06b4c893..8daf6d34c28c5bd4ce0dbf742bbf8d28a3054a24 100644 --- a/module/VuFind/src/VuFind/Date/Converter.php +++ b/module/VuFind/src/VuFind/Date/Converter.php @@ -24,7 +24,7 @@ * @author Demian Katz <demian.katz@villanova.edu> * @author Luke O'Sullivan <l.osullivan@swansea.ac.uk> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/Date_And_Time_Functions Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\Date; use DateTime, VuFind\Config\Reader as ConfigReader, @@ -38,7 +38,7 @@ use DateTime, VuFind\Config\Reader as ConfigReader, * @author Demian Katz <demian.katz@villanova.edu> * @author Luke O'Sullivan <l.osullivan@swansea.ac.uk> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/Date_And_Time_Functions Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Converter { diff --git a/module/VuFind/src/VuFind/Db/Table/PluginFactory.php b/module/VuFind/src/VuFind/Db/Table/PluginFactory.php index 2a7b7d458e416bc3e777e476863cdc36a8b8b37d..04c475c8c464f5577bbca9e9677a19fd3ca44bd8 100644 --- a/module/VuFind/src/VuFind/Db/Table/PluginFactory.php +++ b/module/VuFind/src/VuFind/Db/Table/PluginFactory.php @@ -23,7 +23,7 @@ * @package Db_Table * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:database_gateways Wiki */ namespace VuFind\Db\Table; @@ -34,7 +34,7 @@ namespace VuFind\Db\Table; * @package Db_Table * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:database_gateways Wiki */ class PluginFactory extends \VuFind\ServiceManager\AbstractPluginFactory { diff --git a/module/VuFind/src/VuFind/Db/Table/PluginManager.php b/module/VuFind/src/VuFind/Db/Table/PluginManager.php index 346b028350b34ff41a0f377dd933419729e9683b..057ce03e37123ff81582384c058c1479c38f56bb 100644 --- a/module/VuFind/src/VuFind/Db/Table/PluginManager.php +++ b/module/VuFind/src/VuFind/Db/Table/PluginManager.php @@ -23,7 +23,7 @@ * @package Db_Table * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:database_gateways Wiki */ namespace VuFind\Db\Table; @@ -34,7 +34,7 @@ namespace VuFind\Db\Table; * @package Db_Table * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:database_gateways Wiki */ class PluginManager extends \VuFind\ServiceManager\AbstractPluginManager { diff --git a/module/VuFind/src/VuFind/Exception/Auth.php b/module/VuFind/src/VuFind/Exception/Auth.php index aea31d38b56c5a7171a0907f739502d9165959e3..decd8efbeb0ce7d11671151236923891dc9b9d1c 100644 --- a/module/VuFind/src/VuFind/Exception/Auth.php +++ b/module/VuFind/src/VuFind/Exception/Auth.php @@ -23,7 +23,7 @@ * @package Exceptions * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes#index_interface Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\Exception; @@ -34,7 +34,7 @@ namespace VuFind\Exception; * @package Exceptions * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes#index_interface Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Auth extends \Exception { diff --git a/module/VuFind/src/VuFind/Exception/Date.php b/module/VuFind/src/VuFind/Exception/Date.php index acbb01a97cb7614db89d767e51a274bd3e300c2a..e3901ecb85ef2e55dab5ef2f95dc2a1362334736 100644 --- a/module/VuFind/src/VuFind/Exception/Date.php +++ b/module/VuFind/src/VuFind/Exception/Date.php @@ -23,7 +23,7 @@ * @package Exceptions * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes#index_interface Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\Exception; @@ -34,7 +34,7 @@ namespace VuFind\Exception; * @package Exceptions * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes#index_interface Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Date extends \Exception { diff --git a/module/VuFind/src/VuFind/Exception/FileAccess.php b/module/VuFind/src/VuFind/Exception/FileAccess.php index fa96a6c6c1c32d4b22c6f7fc3b9ee7ca623c84b1..a82ceb1e35d2b08960df351e986c9e1a300a16d3 100644 --- a/module/VuFind/src/VuFind/Exception/FileAccess.php +++ b/module/VuFind/src/VuFind/Exception/FileAccess.php @@ -23,7 +23,7 @@ * @package Exceptions * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes#index_interface Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\Exception; @@ -34,7 +34,7 @@ namespace VuFind\Exception; * @package Exceptions * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes#index_interface Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class FileAccess extends \Exception { diff --git a/module/VuFind/src/VuFind/Exception/Forbidden.php b/module/VuFind/src/VuFind/Exception/Forbidden.php index ba218cea3baa0d0c6f5ef39f1b0fd1267276b0d3..8d747ea2e99d44a0b7aca6f8b3a3501c43165138 100644 --- a/module/VuFind/src/VuFind/Exception/Forbidden.php +++ b/module/VuFind/src/VuFind/Exception/Forbidden.php @@ -23,7 +23,7 @@ * @package Exceptions * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes#index_interface Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\Exception; @@ -34,7 +34,7 @@ namespace VuFind\Exception; * @package Exceptions * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes#index_interface Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Forbidden extends \Exception { diff --git a/module/VuFind/src/VuFind/Exception/ILS.php b/module/VuFind/src/VuFind/Exception/ILS.php index 636cba14430509cb672fa66a86f380c4f1302ee7..d2d7e6a6910e936f44029452ee0a8c2529fce63e 100644 --- a/module/VuFind/src/VuFind/Exception/ILS.php +++ b/module/VuFind/src/VuFind/Exception/ILS.php @@ -23,7 +23,7 @@ * @package Exceptions * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes#index_interface Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\Exception; @@ -34,7 +34,7 @@ namespace VuFind\Exception; * @package Exceptions * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes#index_interface Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class ILS extends \Exception { diff --git a/module/VuFind/src/VuFind/Exception/ListPermission.php b/module/VuFind/src/VuFind/Exception/ListPermission.php index a97ec8647de4178e9847907213b2033bfce11d67..8c942fb277f0a098d8b1d2a4f37fa118e8513a48 100644 --- a/module/VuFind/src/VuFind/Exception/ListPermission.php +++ b/module/VuFind/src/VuFind/Exception/ListPermission.php @@ -23,7 +23,7 @@ * @package Exceptions * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes#index_interface Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\Exception; @@ -34,7 +34,7 @@ namespace VuFind\Exception; * @package Exceptions * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes#index_interface Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class ListPermission extends \Exception { diff --git a/module/VuFind/src/VuFind/Exception/LoginRequired.php b/module/VuFind/src/VuFind/Exception/LoginRequired.php index d8540a5cd0bd4ac2debd10ba9dc780bea6036f4c..16d4c49b72be2a47de54c01c5d81d32d3dd0986b 100644 --- a/module/VuFind/src/VuFind/Exception/LoginRequired.php +++ b/module/VuFind/src/VuFind/Exception/LoginRequired.php @@ -23,7 +23,7 @@ * @package Exceptions * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes#index_interface Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\Exception; @@ -34,7 +34,7 @@ namespace VuFind\Exception; * @package Exceptions * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes#index_interface Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class LoginRequired extends \Exception { diff --git a/module/VuFind/src/VuFind/Exception/Mail.php b/module/VuFind/src/VuFind/Exception/Mail.php index 2c9f02abd3fe4c8acd02088c154dde8bca037883..a08217cb05e9487b579b7a41d52c1620ee06c668 100644 --- a/module/VuFind/src/VuFind/Exception/Mail.php +++ b/module/VuFind/src/VuFind/Exception/Mail.php @@ -23,7 +23,7 @@ * @package Exceptions * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes#index_interface Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\Exception; @@ -34,7 +34,7 @@ namespace VuFind\Exception; * @package Exceptions * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes#index_interface Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Mail extends \Exception { diff --git a/module/VuFind/src/VuFind/Exception/MissingField.php b/module/VuFind/src/VuFind/Exception/MissingField.php index 21b54be5cd1bbabb7d6a4aa682dcca57630ed2e4..f06d8378e50921a181c17eb071cb42a203c529b9 100644 --- a/module/VuFind/src/VuFind/Exception/MissingField.php +++ b/module/VuFind/src/VuFind/Exception/MissingField.php @@ -23,7 +23,7 @@ * @package Exceptions * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes#index_interface Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\Exception; @@ -34,7 +34,7 @@ namespace VuFind\Exception; * @package Exceptions * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes#index_interface Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class MissingField extends \Exception { diff --git a/module/VuFind/src/VuFind/Exception/PasswordSecurity.php b/module/VuFind/src/VuFind/Exception/PasswordSecurity.php index 8223d5c50b24b979c841a75788136978e93faac4..0a710f8e315eaf55be577aca743f5ce9993acdee 100644 --- a/module/VuFind/src/VuFind/Exception/PasswordSecurity.php +++ b/module/VuFind/src/VuFind/Exception/PasswordSecurity.php @@ -23,7 +23,7 @@ * @package Exceptions * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes#index_interface Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\Exception; @@ -34,7 +34,7 @@ namespace VuFind\Exception; * @package Exceptions * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes#index_interface Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class PasswordSecurity extends \Exception { diff --git a/module/VuFind/src/VuFind/Exception/RecordMissing.php b/module/VuFind/src/VuFind/Exception/RecordMissing.php index fdb3571792be32c4c318d970cb05943a8662e804..29e57ea54aa6e920cd85d5800ceb4da9200dfeab 100644 --- a/module/VuFind/src/VuFind/Exception/RecordMissing.php +++ b/module/VuFind/src/VuFind/Exception/RecordMissing.php @@ -23,7 +23,7 @@ * @package Exceptions * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes#index_interface Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\Exception; @@ -34,7 +34,7 @@ namespace VuFind\Exception; * @package Exceptions * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes#index_interface Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class RecordMissing extends \Exception { diff --git a/module/VuFind/src/VuFind/Exception/SessionExpired.php b/module/VuFind/src/VuFind/Exception/SessionExpired.php index 92180190d0b0ee17b0500f7469a0fb43c02a914c..e1998f8ac8e6f744835b591a9666d0db5e7e2448 100644 --- a/module/VuFind/src/VuFind/Exception/SessionExpired.php +++ b/module/VuFind/src/VuFind/Exception/SessionExpired.php @@ -23,7 +23,7 @@ * @package Exceptions * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes#index_interface Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\Exception; @@ -34,7 +34,7 @@ namespace VuFind\Exception; * @package Exceptions * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes#index_interface Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class SessionExpired extends \Exception { diff --git a/module/VuFind/src/VuFind/Feed/Writer/Extension/DublinCore/Entry.php b/module/VuFind/src/VuFind/Feed/Writer/Extension/DublinCore/Entry.php index a92eb588862dd370190aa08f257dd4b5cf216bd8..cca2eacc80c54749cf591bfca91bc73fcf68cf5a 100644 --- a/module/VuFind/src/VuFind/Feed/Writer/Extension/DublinCore/Entry.php +++ b/module/VuFind/src/VuFind/Feed/Writer/Extension/DublinCore/Entry.php @@ -23,7 +23,7 @@ * @package Feed_Plugins * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\Feed\Writer\Extension\DublinCore; use Zend\Feed\Writer\Extension\ITunes\Entry as ParentEntry; @@ -41,7 +41,7 @@ use Zend\Feed\Writer\Extension\ITunes\Entry as ParentEntry; * @package Feed_Plugins * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Entry extends ParentEntry { diff --git a/module/VuFind/src/VuFind/Feed/Writer/Extension/DublinCore/Renderer/Entry.php b/module/VuFind/src/VuFind/Feed/Writer/Extension/DublinCore/Renderer/Entry.php index 7700c1c380cea5bfa7410e4285af4e3d4267cab0..c1384601e5335a268a495b946602cbb166396f8e 100644 --- a/module/VuFind/src/VuFind/Feed/Writer/Extension/DublinCore/Renderer/Entry.php +++ b/module/VuFind/src/VuFind/Feed/Writer/Extension/DublinCore/Renderer/Entry.php @@ -23,7 +23,7 @@ * @package Feed_Plugins * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\Feed\Writer\Extension\DublinCore\Renderer; use DOMDocument, DOMElement, @@ -36,7 +36,7 @@ use DOMDocument, DOMElement, * @package Feed_Plugins * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Entry extends ParentEntry { diff --git a/module/VuFind/src/VuFind/Harvester/NAF.php b/module/VuFind/src/VuFind/Harvester/NAF.php index 2ce27c279f1d0c0918e169255bd721ab59520a6e..870feab09d37afca2ff8a98d195f2cee27c839d1 100644 --- a/module/VuFind/src/VuFind/Harvester/NAF.php +++ b/module/VuFind/src/VuFind/Harvester/NAF.php @@ -23,7 +23,7 @@ * @package Harvest_Tools * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/authority_control Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\Harvester; use VuFind\Connection\SRU, Zend\Console\Console; @@ -38,7 +38,7 @@ use VuFind\Connection\SRU, Zend\Console\Console; * @package Harvest_Tools * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/authority_control Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class NAF { diff --git a/module/VuFind/src/VuFind/Hierarchy/Driver/AbstractBase.php b/module/VuFind/src/VuFind/Hierarchy/Driver/AbstractBase.php index 353f1d32ae34b3ca04299f3c2527eae0cedec09f..1e0b136e08200773e030b1869f89f2069e95e96c 100644 --- a/module/VuFind/src/VuFind/Hierarchy/Driver/AbstractBase.php +++ b/module/VuFind/src/VuFind/Hierarchy/Driver/AbstractBase.php @@ -23,7 +23,7 @@ * @package Hierarchy * @author Luke O'Sullivan <l.osullivan@swansea.ac.uk> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_search_object Wiki + * @link http://vufind.org/wiki/vufind2:hierarchy_components Wiki */ namespace VuFind\Hierarchy\Driver; use VuFind\Hierarchy\TreeDataSource\PluginManager as DataManager, @@ -40,7 +40,7 @@ use VuFind\Hierarchy\TreeDataSource\PluginManager as DataManager, * @package Hierarchy * @author Luke O'Sullivan <l.osullivan@swansea.ac.uk> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_search_object Wiki + * @link http://vufind.org/wiki/vufind2:hierarchy_components Wiki */ abstract class AbstractBase { diff --git a/module/VuFind/src/VuFind/Hierarchy/Driver/ConfigurationBased.php b/module/VuFind/src/VuFind/Hierarchy/Driver/ConfigurationBased.php index 7261af65c2287770c1bfa8583c2cd4c70af3e8ae..6f90eb07f3b0a4216a4568f5f04251d8d509deca 100644 --- a/module/VuFind/src/VuFind/Hierarchy/Driver/ConfigurationBased.php +++ b/module/VuFind/src/VuFind/Hierarchy/Driver/ConfigurationBased.php @@ -23,7 +23,7 @@ * @package Hierarchy_Drivers * @author Luke O'Sullivan <l.osullivan@swansea.ac.uk> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:hierarchy_components Wiki */ namespace VuFind\Hierarchy\Driver; @@ -34,7 +34,7 @@ namespace VuFind\Hierarchy\Driver; * @package Hierarchy_Drivers * @author Luke O'Sullivan <l.osullivan@swansea.ac.uk> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:hierarchy_components Wiki */ class ConfigurationBased extends AbstractBase { diff --git a/module/VuFind/src/VuFind/Hierarchy/Driver/Factory.php b/module/VuFind/src/VuFind/Hierarchy/Driver/Factory.php index 9cf273e8747f2e0a8cb291bb153a6410b4f52b0a..e7f2feef12baee000ac7f28a74f51febab4adeb4 100644 --- a/module/VuFind/src/VuFind/Hierarchy/Driver/Factory.php +++ b/module/VuFind/src/VuFind/Hierarchy/Driver/Factory.php @@ -23,7 +23,7 @@ * @package Hierarchy_Drivers * @author Luke O'Sullivan <l.osullivan@swansea.ac.uk> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_search_object Wiki + * @link http://vufind.org/wiki/vufind2:hierarchy_components Wiki */ namespace VuFind\Hierarchy\Driver; @@ -36,7 +36,7 @@ namespace VuFind\Hierarchy\Driver; * @package Hierarchy_Drivers * @author Luke O'Sullivan <l.osullivan@swansea.ac.uk> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_search_object Wiki + * @link http://vufind.org/wiki/vufind2:hierarchy_components Wiki */ class Factory { diff --git a/module/VuFind/src/VuFind/Hierarchy/Driver/PluginManager.php b/module/VuFind/src/VuFind/Hierarchy/Driver/PluginManager.php index 5dfda51ca92b58ac9eb3f7b508a86b12ca7714c3..f561eb8947253c10d3b9588cd6271a1a09fa8993 100644 --- a/module/VuFind/src/VuFind/Hierarchy/Driver/PluginManager.php +++ b/module/VuFind/src/VuFind/Hierarchy/Driver/PluginManager.php @@ -23,7 +23,7 @@ * @package Hierarchy_Drivers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:hierarchy_components Wiki */ namespace VuFind\Hierarchy\Driver; @@ -34,7 +34,7 @@ namespace VuFind\Hierarchy\Driver; * @package Hierarchy_Drivers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:hierarchy_components Wiki */ class PluginManager extends \VuFind\ServiceManager\AbstractPluginManager { diff --git a/module/VuFind/src/VuFind/Hierarchy/TreeDataSource/AbstractBase.php b/module/VuFind/src/VuFind/Hierarchy/TreeDataSource/AbstractBase.php index 3fe3dfd3c1b2904d3f6ad6c5c82e6674e7967b31..35a45cda242585f3f766f6d2cab879e701f7b616 100644 --- a/module/VuFind/src/VuFind/Hierarchy/TreeDataSource/AbstractBase.php +++ b/module/VuFind/src/VuFind/Hierarchy/TreeDataSource/AbstractBase.php @@ -23,7 +23,7 @@ * @package HierarchyTree_DataSource * @author Luke O'Sullivan <l.osullivan@swansea.ac.uk> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_authentication_handler Wiki + * @link http://vufind.org/wiki/vufind2:hierarchy_components Wiki */ namespace VuFind\Hierarchy\TreeDataSource; use Zend\Log\LoggerInterface; @@ -37,7 +37,7 @@ use Zend\Log\LoggerInterface; * @package HierarchyTree_DataSource * @author Luke O'Sullivan <l.osullivan@swansea.ac.uk> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_authentication_handler Wiki + * @link http://vufind.org/wiki/vufind2:hierarchy_components Wiki */ abstract class AbstractBase implements \Zend\Log\LoggerAwareInterface { diff --git a/module/VuFind/src/VuFind/Hierarchy/TreeDataSource/PluginManager.php b/module/VuFind/src/VuFind/Hierarchy/TreeDataSource/PluginManager.php index f3a6b4cd02894bce6935dc0373dcdf85bdd90233..f4defe968ebdf39bf694e02450f69274f523708f 100644 --- a/module/VuFind/src/VuFind/Hierarchy/TreeDataSource/PluginManager.php +++ b/module/VuFind/src/VuFind/Hierarchy/TreeDataSource/PluginManager.php @@ -23,7 +23,7 @@ * @package HierarchyTree_DataSource * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:hierarchy_components Wiki */ namespace VuFind\Hierarchy\TreeDataSource; @@ -34,7 +34,7 @@ namespace VuFind\Hierarchy\TreeDataSource; * @package HierarchyTree_DataSource * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:hierarchy_components Wiki */ class PluginManager extends \VuFind\ServiceManager\AbstractPluginManager { diff --git a/module/VuFind/src/VuFind/Hierarchy/TreeDataSource/Solr.php b/module/VuFind/src/VuFind/Hierarchy/TreeDataSource/Solr.php index f5d200a31b5b5503e1ed54ce52467280aefca6cd..de14969a036f5e5118b95d641c6010bf8314c779 100644 --- a/module/VuFind/src/VuFind/Hierarchy/TreeDataSource/Solr.php +++ b/module/VuFind/src/VuFind/Hierarchy/TreeDataSource/Solr.php @@ -23,7 +23,7 @@ * @package HierarchyTree_DataSource * @author Luke O'Sullivan <l.osullivan@swansea.ac.uk> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_authentication_handler Wiki + * @link http://vufind.org/wiki/vufind2:hierarchy_components Wiki */ namespace VuFind\Hierarchy\TreeDataSource; use VuFind\Connection\Manager as ConnectionManager; @@ -37,7 +37,7 @@ use VuFind\Connection\Manager as ConnectionManager; * @package HierarchyTree_DataSource * @author Luke O'Sullivan <l.osullivan@swansea.ac.uk> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_authentication_handler Wiki + * @link http://vufind.org/wiki/vufind2:hierarchy_components Wiki */ class Solr extends AbstractBase { diff --git a/module/VuFind/src/VuFind/Hierarchy/TreeDataSource/XMLFile.php b/module/VuFind/src/VuFind/Hierarchy/TreeDataSource/XMLFile.php index 238451b5b29e0149ef12e6571369c4ed38b8e006..0892f15ffe72f2113ab3e24b19a56e7beca53885 100644 --- a/module/VuFind/src/VuFind/Hierarchy/TreeDataSource/XMLFile.php +++ b/module/VuFind/src/VuFind/Hierarchy/TreeDataSource/XMLFile.php @@ -23,7 +23,7 @@ * @package HierarchyTree_DataSource * @author Luke O'Sullivan <l.osullivan@swansea.ac.uk> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_authentication_handler Wiki + * @link http://vufind.org/wiki/vufind2:hierarchy_components Wiki */ namespace VuFind\Hierarchy\TreeDataSource; @@ -36,7 +36,7 @@ namespace VuFind\Hierarchy\TreeDataSource; * @package HierarchyTree_DataSource * @author Luke O'Sullivan <l.osullivan@swansea.ac.uk> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_authentication_handler Wiki + * @link http://vufind.org/wiki/vufind2:hierarchy_components Wiki */ class XMLFile extends AbstractBase { diff --git a/module/VuFind/src/VuFind/Hierarchy/TreeRenderer/AbstractBase.php b/module/VuFind/src/VuFind/Hierarchy/TreeRenderer/AbstractBase.php index 4cc44dd40634a1015974ea559474896552bb5b9c..37b97ec79c57392054c03c2f1b68a151bcb42ca0 100644 --- a/module/VuFind/src/VuFind/Hierarchy/TreeRenderer/AbstractBase.php +++ b/module/VuFind/src/VuFind/Hierarchy/TreeRenderer/AbstractBase.php @@ -23,7 +23,7 @@ * @package HierarchyTree_Renderer * @author Luke O'Sullivan <l.osullivan@swansea.ac.uk> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_authentication_handler Wiki + * @link http://vufind.org/wiki/vufind2:hierarchy_components Wiki */ namespace VuFind\Hierarchy\TreeRenderer; @@ -36,7 +36,7 @@ namespace VuFind\Hierarchy\TreeRenderer; * @package HierarchyTree_Renderer * @author Luke O'Sullivan <l.osullivan@swansea.ac.uk> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_authentication_handler Wiki + * @link http://vufind.org/wiki/vufind2:hierarchy_components Wiki */ abstract class AbstractBase { diff --git a/module/VuFind/src/VuFind/Hierarchy/TreeRenderer/JSTree.php b/module/VuFind/src/VuFind/Hierarchy/TreeRenderer/JSTree.php index 476b2ef7d37a157c7a0a01da88f5f39e8d97aab1..b7e52d2878459cdabafd92d18d40e155d22ce15f 100644 --- a/module/VuFind/src/VuFind/Hierarchy/TreeRenderer/JSTree.php +++ b/module/VuFind/src/VuFind/Hierarchy/TreeRenderer/JSTree.php @@ -23,7 +23,7 @@ * @package HierarchyTree_Renderer * @author Luke O'Sullivan <l.osullivan@swansea.ac.uk> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_authentication_handler Wiki + * @link http://vufind.org/wiki/vufind2:hierarchy_components Wiki */ namespace VuFind\Hierarchy\TreeRenderer; @@ -36,7 +36,7 @@ namespace VuFind\Hierarchy\TreeRenderer; * @package HierarchyTree_Renderer * @author Luke O'Sullivan <l.osullivan@swansea.ac.uk> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_authentication_handler Wiki + * @link http://vufind.org/wiki/vufind2:hierarchy_components Wiki */ class JSTree extends AbstractBase diff --git a/module/VuFind/src/VuFind/ILS/Connection.php b/module/VuFind/src/VuFind/ILS/Connection.php index 2f5d9aa5e5778b8c0deac90bd8b6a0d79afd1e05..e4a6f390365eb9d2caccb88c08126d2c700e3ae3 100644 --- a/module/VuFind/src/VuFind/ILS/Connection.php +++ b/module/VuFind/src/VuFind/ILS/Connection.php @@ -27,7 +27,7 @@ * @author Andrew S. Nagy <vufind-tech@lists.sourceforge.net> * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ namespace VuFind\ILS; use VuFind\Config\Reader as ConfigReader, VuFind\Exception\ILS as ILSException, @@ -44,7 +44,7 @@ use VuFind\Config\Reader as ConfigReader, VuFind\Exception\ILS as ILSException, * @author Andrew S. Nagy <vufind-tech@lists.sourceforge.net> * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ class Connection { diff --git a/module/VuFind/src/VuFind/ILS/Driver/AbstractBase.php b/module/VuFind/src/VuFind/ILS/Driver/AbstractBase.php index fa394ab5fa01fefd52a683a59a7b8170880874e9..2a02e237a655b5a9aeeebcfe7fb1e77ca77b0e60 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/AbstractBase.php +++ b/module/VuFind/src/VuFind/ILS/Driver/AbstractBase.php @@ -23,7 +23,7 @@ * @package ILS_Drivers * @author Andrew S. Nagy <vufind-tech@lists.sourceforge.net> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ namespace VuFind\ILS\Driver; @@ -34,7 +34,7 @@ namespace VuFind\ILS\Driver; * @package ILS_Drivers * @author Andrew S. Nagy <vufind-tech@lists.sourceforge.net> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ abstract class AbstractBase implements DriverInterface { diff --git a/module/VuFind/src/VuFind/ILS/Driver/Aleph.php b/module/VuFind/src/VuFind/ILS/Driver/Aleph.php index 3dcdad8b8be444eb15bcdbe16ec4dbb345e87ab0..64d758fbe9c83caf30273f12a63b82a7693ee7c0 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/Aleph.php +++ b/module/VuFind/src/VuFind/ILS/Driver/Aleph.php @@ -33,7 +33,7 @@ * @author Kun Lin <vufind-tech@lists.sourceforge.net> * @author Vaclav Rosecky <vufind-tech@lists.sourceforge.net> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ namespace VuFind\ILS\Driver; use VuFind\Config\Reader as ConfigReader, VuFind\Exception\ILS as ILSException, @@ -47,7 +47,7 @@ use VuFind\Config\Reader as ConfigReader, VuFind\Exception\ILS as ILSException, * @package ILS_Drivers * @author Vaclav Rosecky <vufind-tech@lists.sourceforge.net> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ class AlephTranslator { @@ -253,7 +253,7 @@ class AlephTranslator * @package Exceptions * @author Vaclav Rosecky <vufind-tech@lists.sourceforge.net> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes#index_interface Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class AlephRestfulException extends \Exception { @@ -270,7 +270,7 @@ class AlephRestfulException extends \Exception * @author Kun Lin <vufind-tech@lists.sourceforge.net> * @author Vaclav Rosecky <vufind-tech@lists.sourceforge.net> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ class Aleph extends AbstractBase implements ServiceLocatorAwareInterface { diff --git a/module/VuFind/src/VuFind/ILS/Driver/Amicus.php b/module/VuFind/src/VuFind/ILS/Driver/Amicus.php index de76acf7a6b46655a2065cf877afb9501ee2944f..2fc91b6fc7ecb5e22714869909a9e468b8393d87 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/Amicus.php +++ b/module/VuFind/src/VuFind/ILS/Driver/Amicus.php @@ -23,7 +23,7 @@ * @package ILS_Drivers * @author Josu Moreno <jmoreno@scanbit.net> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ namespace VuFind\ILS\Driver; use PDO, PDOException, VuFind\Config\Reader as ConfigReader, @@ -37,7 +37,7 @@ use PDO, PDOException, VuFind\Config\Reader as ConfigReader, * @package ILS_Drivers * @author Josu Moreno <jmoreno@scanbit.net> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ class Amicus extends AbstractBase implements TranslatorAwareInterface { diff --git a/module/VuFind/src/VuFind/ILS/Driver/ClaviusSQL.php b/module/VuFind/src/VuFind/ILS/Driver/ClaviusSQL.php index 6fd1107b993fef9784b4f0a98dc3c8c32a399943..5c93ba809a7105fc944f8124617a057e1aabd796 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/ClaviusSQL.php +++ b/module/VuFind/src/VuFind/ILS/Driver/ClaviusSQL.php @@ -23,7 +23,7 @@ * @package ILS_Drivers * @author Josef Moravec <josef.moravec@knihovna-uo.cz> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ namespace VuFind\ILS\Driver; use PDO, PDOException, VuFind\Config\Reader as ConfigReader, diff --git a/module/VuFind/src/VuFind/ILS/Driver/DAIA.php b/module/VuFind/src/VuFind/ILS/Driver/DAIA.php index fcde26241c7f0dc8bd19b073e27c1e6e73faa440..fe5af6040ee37b8c5a13791d8ea6b6a426035c5f 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/DAIA.php +++ b/module/VuFind/src/VuFind/ILS/Driver/DAIA.php @@ -25,7 +25,7 @@ * @package ILS_Drivers * @author Oliver Goldschmidt <o.goldschmidt@tu-harburg.de> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ namespace VuFind\ILS\Driver; use DOMDocument, VuFind\Config\Reader as ConfigReader, @@ -40,7 +40,7 @@ use DOMDocument, VuFind\Config\Reader as ConfigReader, * @package ILS_Drivers * @author Oliver Goldschmidt <o.goldschmidt@tu-harburg.de> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ class DAIA extends AbstractBase { diff --git a/module/VuFind/src/VuFind/ILS/Driver/Demo.php b/module/VuFind/src/VuFind/ILS/Driver/Demo.php index 88fb82d6d2e45e8b38344d3c22411a7706357ea0..b9c431e15423d09bda4a2c5dd5afb5151aeb1ebc 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/Demo.php +++ b/module/VuFind/src/VuFind/ILS/Driver/Demo.php @@ -27,7 +27,7 @@ * @package ILS_Drivers * @author Greg Pendlebury <vufind-tech@lists.sourceforge.net> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ namespace VuFind\ILS\Driver; use ArrayObject, VuFind\Config\Reader as ConfigReader, @@ -44,7 +44,7 @@ use ArrayObject, VuFind\Config\Reader as ConfigReader, * @package ILS_Drivers * @author Greg Pendlebury <vufind-tech@lists.sourceforge.net> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ class Demo extends AbstractBase { diff --git a/module/VuFind/src/VuFind/ILS/Driver/DriverInterface.php b/module/VuFind/src/VuFind/ILS/Driver/DriverInterface.php index 67958a7d801a5fd435e4ae14e87fa46342dc367c..5dd9a76f25a0d35c835566f69c002a6442611d00 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/DriverInterface.php +++ b/module/VuFind/src/VuFind/ILS/Driver/DriverInterface.php @@ -23,7 +23,7 @@ * @package ILS_Drivers * @author Andrew S. Nagy <vufind-tech@lists.sourceforge.net> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ namespace VuFind\ILS\Driver; @@ -42,7 +42,7 @@ namespace VuFind\ILS\Driver; * @package ILS_Drivers * @author Andrew S. Nagy <vufind-tech@lists.sourceforge.net> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ interface DriverInterface { diff --git a/module/VuFind/src/VuFind/ILS/Driver/Evergreen.php b/module/VuFind/src/VuFind/ILS/Driver/Evergreen.php index b39275096b3b5e565e4e2c99a3dff74e03c22f94..dfda2d7b21f47f1a00e59841f9f4af175fa54385 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/Evergreen.php +++ b/module/VuFind/src/VuFind/ILS/Driver/Evergreen.php @@ -23,7 +23,7 @@ * @package ILS_Drivers * @author Warren Layton, NRCan Library <warren.layton@gmail.com> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ namespace VuFind\ILS\Driver; use PDO, PDOException, VuFind\Config\Reader as ConfigReader, @@ -39,7 +39,7 @@ use PDO, PDOException, VuFind\Config\Reader as ConfigReader, * @package ILS_Drivers * @author Warren Layton, NRCan Library <warren.layton@gmail.com> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ class Evergreen extends AbstractBase { diff --git a/module/VuFind/src/VuFind/ILS/Driver/Horizon.php b/module/VuFind/src/VuFind/ILS/Driver/Horizon.php index b4ba3c0367f42efde27dbb13beaca5bd6e842eba..14efc0d8ed8454e24f7a3f3c9faad071bd1f7852 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/Horizon.php +++ b/module/VuFind/src/VuFind/ILS/Driver/Horizon.php @@ -24,7 +24,7 @@ * @author Matt Mackey <vufind-tech@lists.sourceforge.net> * @author Ray Cummins <vufind-tech@lists.sourceforge.net> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ namespace VuFind\ILS\Driver; use VuFind\Config\Reader as ConfigReader, VuFind\Exception\ILS as ILSException; @@ -37,7 +37,7 @@ use VuFind\Config\Reader as ConfigReader, VuFind\Exception\ILS as ILSException; * @author Matt Mackey <vufind-tech@lists.sourceforge.net> * @author Ray Cummins <vufind-tech@lists.sourceforge.net> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ class Horizon extends AbstractBase { diff --git a/module/VuFind/src/VuFind/ILS/Driver/HorizonXMLAPI.php b/module/VuFind/src/VuFind/ILS/Driver/HorizonXMLAPI.php index 7385d8dfa344fa8a107fffb92e6b22bf19bd1254..298448dfb589f09e25a32b84005168150139c407 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/HorizonXMLAPI.php +++ b/module/VuFind/src/VuFind/ILS/Driver/HorizonXMLAPI.php @@ -24,7 +24,7 @@ * @author Matt Mackey <vufind-tech@lists.sourceforge.net> * @author Ray Cummins <vufind-tech@lists.sourceforge.net> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ namespace VuFind\ILS\Driver; use VuFind\Exception\ILS as ILSException; @@ -37,7 +37,7 @@ use VuFind\Exception\ILS as ILSException; * @author Matt Mackey <vufind-tech@lists.sourceforge.net> * @author Ray Cummins <vufind-tech@lists.sourceforge.net> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ class HorizonXMLAPI extends Horizon implements \VuFindHttp\HttpServiceAwareInterface { diff --git a/module/VuFind/src/VuFind/ILS/Driver/Innovative.php b/module/VuFind/src/VuFind/ILS/Driver/Innovative.php index e673e0b0e6f73771732890cbc7368a9bf5da646a..bbe7ebb9a8baebd84fb651e27e78f990d98deef4 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/Innovative.php +++ b/module/VuFind/src/VuFind/ILS/Driver/Innovative.php @@ -23,7 +23,7 @@ * @package ILS_Drivers * @author Adam Brin <abrin@brynmawr.com> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ namespace VuFind\ILS\Driver; use VuFind\Config\Reader as ConfigReader, VuFind\Exception\ILS as ILSException; @@ -38,7 +38,7 @@ use VuFind\Config\Reader as ConfigReader, VuFind\Exception\ILS as ILSException; * @package ILS_Drivers * @author Adam Brin <abrin@brynmawr.com> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ class Innovative extends AbstractBase implements \VuFindHttp\HttpServiceAwareInterface diff --git a/module/VuFind/src/VuFind/ILS/Driver/Koha.php b/module/VuFind/src/VuFind/ILS/Driver/Koha.php index eeac7c0725a93c6dee04771a9827e9d1b66b10a4..add59c55bc9d681a9875c70210003068e99e5c1e 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/Koha.php +++ b/module/VuFind/src/VuFind/ILS/Driver/Koha.php @@ -24,7 +24,7 @@ * @author Altaf Mahmud, System Programmer <altaf.mahmud@gmail.com> * @author David Maus <maus@hab.de> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ namespace VuFind\ILS\Driver; use PDO, PDOException, VuFind\Config\Reader as ConfigReader, @@ -40,7 +40,7 @@ use PDO, PDOException, VuFind\Config\Reader as ConfigReader, * @author Altaf Mahmud, System Programmer <altaf.mahmud@gmail.com> * @author David Maus <maus@hab.de> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ class Koha extends AbstractBase { diff --git a/module/VuFind/src/VuFind/ILS/Driver/NewGenLib.php b/module/VuFind/src/VuFind/ILS/Driver/NewGenLib.php index a4af49c336307137a543576696c17e3ab4e70aeb..e6034cafca2c8ef1b793f1d487f42d8286f19a36 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/NewGenLib.php +++ b/module/VuFind/src/VuFind/ILS/Driver/NewGenLib.php @@ -23,7 +23,7 @@ * @package ILS_Drivers * @author Verus Solutions <info@verussolutions.biz> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ namespace VuFind\ILS\Driver; use PDO, PDOException, VuFind\Config\Reader as ConfigReader, @@ -36,7 +36,7 @@ use PDO, PDOException, VuFind\Config\Reader as ConfigReader, * @package ILS_Drivers * @author Verus Solutions <info@verussolutions.biz> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ class NewGenLib extends AbstractBase { diff --git a/module/VuFind/src/VuFind/ILS/Driver/NoILS.php b/module/VuFind/src/VuFind/ILS/Driver/NoILS.php index df16e6b178fd5b5547092beddfc56ec58e941055..84fa0730bc1b62ab66b02a1ee121cb4f59a27ea1 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/NoILS.php +++ b/module/VuFind/src/VuFind/ILS/Driver/NoILS.php @@ -24,7 +24,7 @@ * @author Luke O'Sullivan <l.osullivan@swansea.ac.uk> * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ namespace VuFind\ILS\Driver; use VuFind\Config\Reader as ConfigReader, VuFind\Exception\ILS as ILSException, @@ -40,7 +40,7 @@ use VuFind\Config\Reader as ConfigReader, VuFind\Exception\ILS as ILSException, * @author Luke O'Sullivan <l.osullivan@swansea.ac.uk> * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ class NoILS extends AbstractBase implements ServiceLocatorAwareInterface, TranslatorAwareInterface diff --git a/module/VuFind/src/VuFind/ILS/Driver/PICA.php b/module/VuFind/src/VuFind/ILS/Driver/PICA.php index 22bcfbed2337c0d1f4d553c821873721b99e316e..3fff7cc4b11e1681dba915875fa62336b1fc2cef 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/PICA.php +++ b/module/VuFind/src/VuFind/ILS/Driver/PICA.php @@ -27,7 +27,7 @@ * @package ILS_Drivers * @author Oliver Goldschmidt <o.goldschmidt@tu-harburg.de> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ namespace VuFind\ILS\Driver; use DOMDocument, VuFind\Config\Reader as ConfigReader, @@ -43,7 +43,7 @@ use DOMDocument, VuFind\Config\Reader as ConfigReader, * @package ILS_Drivers * @author Oliver Goldschmidt <o.goldschmidt@tu-harburg.de> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ class PICA extends DAIA { diff --git a/module/VuFind/src/VuFind/ILS/Driver/PluginFactory.php b/module/VuFind/src/VuFind/ILS/Driver/PluginFactory.php index a92408cda50fa63d6ca8f84ab4ace266c3d10819..4e95bf3831996b5b5a77caba1baa263570cf7db8 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/PluginFactory.php +++ b/module/VuFind/src/VuFind/ILS/Driver/PluginFactory.php @@ -23,7 +23,7 @@ * @package ILS_Drivers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ namespace VuFind\ILS\Driver; @@ -34,7 +34,7 @@ namespace VuFind\ILS\Driver; * @package ILS_Drivers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ class PluginFactory extends \VuFind\ServiceManager\AbstractPluginFactory { diff --git a/module/VuFind/src/VuFind/ILS/Driver/PluginManager.php b/module/VuFind/src/VuFind/ILS/Driver/PluginManager.php index ac27f6cb1628f200910b8a5b4be892d9ff58044e..c4d0c6b454e92957f20945627c6aec1ea91fdb85 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/PluginManager.php +++ b/module/VuFind/src/VuFind/ILS/Driver/PluginManager.php @@ -23,7 +23,7 @@ * @package ILS_Drivers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ namespace VuFind\ILS\Driver; @@ -34,7 +34,7 @@ namespace VuFind\ILS\Driver; * @package ILS_Drivers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ class PluginManager extends \VuFind\ServiceManager\AbstractPluginManager { diff --git a/module/VuFind/src/VuFind/ILS/Driver/Sample.php b/module/VuFind/src/VuFind/ILS/Driver/Sample.php index 1375814e8ccce5a0ea98f67b2b56ba752fba9bc1..31f2d1fe19be58e821e2e7102d980c0eddfa0f10 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/Sample.php +++ b/module/VuFind/src/VuFind/ILS/Driver/Sample.php @@ -24,7 +24,7 @@ * @author Andrew S. Nagy <vufind-tech@lists.sourceforge.net> * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ namespace VuFind\ILS\Driver; @@ -36,7 +36,7 @@ namespace VuFind\ILS\Driver; * @author Andrew S. Nagy <vufind-tech@lists.sourceforge.net> * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ class Sample extends AbstractBase { diff --git a/module/VuFind/src/VuFind/ILS/Driver/Symphony.php b/module/VuFind/src/VuFind/ILS/Driver/Symphony.php index 9a14251654d2f2595e75836bb2e95dcbb9509e0c..c0e31ef62f690b6e5fc578f90aa74305eaa49a01 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/Symphony.php +++ b/module/VuFind/src/VuFind/ILS/Driver/Symphony.php @@ -24,7 +24,7 @@ * @author Steven Hild <sjhild@wm.edu> * @author Michael Gillen <mlgillen@sfasu.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ namespace VuFind\ILS\Driver; use SoapClient, SoapFault, SoapHeader, VuFind\Config\Reader as ConfigReader, @@ -40,7 +40,7 @@ use SoapClient, SoapFault, SoapHeader, VuFind\Config\Reader as ConfigReader, * @author Steven Hild <sjhild@wm.edu> * @author Michael Gillen <mlgillen@sfasu.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ class Symphony extends AbstractBase implements ServiceLocatorAwareInterface diff --git a/module/VuFind/src/VuFind/ILS/Driver/Virtua.php b/module/VuFind/src/VuFind/ILS/Driver/Virtua.php index e54a7d49364f07fb99e4a527861278a3f2b79ef2..41cb98b64ed2fcc580d093f87abe3daf251bebc0 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/Virtua.php +++ b/module/VuFind/src/VuFind/ILS/Driver/Virtua.php @@ -23,7 +23,7 @@ * @package ILS_Drivers * @author Greg Pendlebury <vufind-tech@lists.sourceforge.net> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ namespace VuFind\ILS\Driver; use VuFind\Config\Reader as ConfigReader, VuFind\Exception\ILS as ILSException; @@ -35,7 +35,7 @@ use VuFind\Config\Reader as ConfigReader, VuFind\Exception\ILS as ILSException; * @package ILS_Drivers * @author Greg Pendlebury <vufind-tech@lists.sourceforge.net> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ class Virtua extends AbstractBase implements \VuFindHttp\HttpServiceAwareInterface { diff --git a/module/VuFind/src/VuFind/ILS/Driver/Voyager.php b/module/VuFind/src/VuFind/ILS/Driver/Voyager.php index 83cb957f653f0de5d7e8ff4184c9e3203c2321e9..6c7414b9a9fceccfd91058cd19e07ad405dde116 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/Voyager.php +++ b/module/VuFind/src/VuFind/ILS/Driver/Voyager.php @@ -24,7 +24,7 @@ * @author Andrew S. Nagy <vufind-tech@lists.sourceforge.net> * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ namespace VuFind\ILS\Driver; use File_MARC, PDO, PDOException, VuFind\Config\Reader as ConfigReader, @@ -41,7 +41,7 @@ use File_MARC, PDO, PDOException, VuFind\Config\Reader as ConfigReader, * @author Andrew S. Nagy <vufind-tech@lists.sourceforge.net> * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ class Voyager extends AbstractBase implements TranslatorAwareInterface { diff --git a/module/VuFind/src/VuFind/ILS/Driver/VoyagerRestful.php b/module/VuFind/src/VuFind/ILS/Driver/VoyagerRestful.php index 2c889c7613f4cc46ecdc9e9adf2011dde090a6aa..92d06d534b81d2c927f48f50abc35bb04c305f90 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/VoyagerRestful.php +++ b/module/VuFind/src/VuFind/ILS/Driver/VoyagerRestful.php @@ -25,7 +25,7 @@ * @author Demian Katz <demian.katz@villanova.edu> * @author Luke O'Sullivan <l.osullivan@swansea.ac.uk> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ namespace VuFind\ILS\Driver; use PDOException, VuFind\Exception\Date as DateException, @@ -40,7 +40,7 @@ use PDOException, VuFind\Exception\Date as DateException, * @author Demian Katz <demian.katz@villanova.edu> * @author Luke O'Sullivan <l.osullivan@swansea.ac.uk> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ class VoyagerRestful extends Voyager implements \VuFindHttp\HttpServiceAwareInterface { diff --git a/module/VuFind/src/VuFind/ILS/Driver/XCNCIP.php b/module/VuFind/src/VuFind/ILS/Driver/XCNCIP.php index 3f2599bde0b4067f3c5aa3281ca6e25271bad955..024f2c3686f54263b50e296081364f9883dadc5f 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/XCNCIP.php +++ b/module/VuFind/src/VuFind/ILS/Driver/XCNCIP.php @@ -23,7 +23,7 @@ * @package ILS_Drivers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ namespace VuFind\ILS\Driver; use VuFind\Config\Reader as ConfigReader, VuFind\Exception\ILS as ILSException; @@ -35,7 +35,7 @@ use VuFind\Config\Reader as ConfigReader, VuFind\Exception\ILS as ILSException; * @package ILS_Drivers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ class XCNCIP extends AbstractBase implements \VuFindHttp\HttpServiceAwareInterface { diff --git a/module/VuFind/src/VuFind/ILS/Driver/XCNCIP2.php b/module/VuFind/src/VuFind/ILS/Driver/XCNCIP2.php index 13518c9907f1ee9af75fe74a3b11b325631adfee..6285f3393b6cea7054fba68b192040a2875ae49a 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/XCNCIP2.php +++ b/module/VuFind/src/VuFind/ILS/Driver/XCNCIP2.php @@ -23,7 +23,7 @@ * @package ILS_Drivers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ namespace VuFind\ILS\Driver; use VuFind\Config\Reader as ConfigReader, VuFind\Exception\ILS as ILSException; @@ -35,7 +35,7 @@ use VuFind\Config\Reader as ConfigReader, VuFind\Exception\ILS as ILSException; * @package ILS_Drivers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_an_ils_driver Wiki + * @link http://vufind.org/wiki/vufind2:building_an_ils_driver Wiki */ class XCNCIP2 extends AbstractBase implements \VuFindHttp\HttpServiceAwareInterface { diff --git a/module/VuFind/src/VuFind/ILS/Logic/Holds.php b/module/VuFind/src/VuFind/ILS/Logic/Holds.php index c71dec293708d00d103f128f80f60832978e8d17..1e1aabdf2d628fd11d03b3f7ccb50d4152a4ec68 100644 --- a/module/VuFind/src/VuFind/ILS/Logic/Holds.php +++ b/module/VuFind/src/VuFind/ILS/Logic/Holds.php @@ -24,7 +24,7 @@ * @author Demian Katz <demian.katz@villanova.edu> * @author Luke O'Sullivan <l.osullivan@swansea.ac.uk> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes#index_interface Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\ILS\Logic; use VuFind\Config\Reader as ConfigReader, VuFind\Crypt\HMAC, @@ -38,7 +38,7 @@ use VuFind\Config\Reader as ConfigReader, VuFind\Crypt\HMAC, * @author Demian Katz <demian.katz@villanova.edu> * @author Luke O'Sullivan <l.osullivan@swansea.ac.uk> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes#index_interface Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Holds { diff --git a/module/VuFind/src/VuFind/ILS/Logic/TitleHolds.php b/module/VuFind/src/VuFind/ILS/Logic/TitleHolds.php index 68b08c504ebd387c4626a1ada042608cebcb223a..cdaf97d05ee09e2e5a2c6f336b3b9f60f8ce7046 100644 --- a/module/VuFind/src/VuFind/ILS/Logic/TitleHolds.php +++ b/module/VuFind/src/VuFind/ILS/Logic/TitleHolds.php @@ -24,7 +24,7 @@ * @author Demian Katz <demian.katz@villanova.edu> * @author Luke O'Sullivan <l.osullivan@swansea.ac.uk> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes#index_interface Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\ILS\Logic; use VuFind\Config\Reader as ConfigReader, VuFind\Crypt\HMAC, @@ -38,7 +38,7 @@ use VuFind\Config\Reader as ConfigReader, VuFind\Crypt\HMAC, * @author Demian Katz <demian.katz@villanova.edu> * @author Luke O'Sullivan <l.osullivan@swansea.ac.uk> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes#index_interface Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class TitleHolds { diff --git a/module/VuFind/src/VuFind/Mailer.php b/module/VuFind/src/VuFind/Mailer.php index 19b3ecea530652ecdf6b01562a097f6604e2ea97..b98943a71f889dfe913136a74c1bc410452f636a 100644 --- a/module/VuFind/src/VuFind/Mailer.php +++ b/module/VuFind/src/VuFind/Mailer.php @@ -23,7 +23,7 @@ * @package Mailer * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind; use VuFind\Config\Reader as ConfigReader, VuFind\Exception\Mail as MailException, @@ -36,7 +36,7 @@ use VuFind\Config\Reader as ConfigReader, VuFind\Exception\Mail as MailException * @package Mailer * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Mailer implements \VuFind\I18n\Translator\TranslatorAwareInterface { diff --git a/module/VuFind/src/VuFind/OAI/Server.php b/module/VuFind/src/VuFind/OAI/Server.php index 2029f7a812c44ede5c1414bd44de914d343ba0d5..ad4cb3b0284e5a06e377018edce643685a9e0dd4 100644 --- a/module/VuFind/src/VuFind/OAI/Server.php +++ b/module/VuFind/src/VuFind/OAI/Server.php @@ -23,7 +23,7 @@ * @package OAI_Server * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/tracking_record_changes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\OAI; use SimpleXMLElement, VuFind\Config\Reader as ConfigReader, @@ -38,7 +38,7 @@ use SimpleXMLElement, VuFind\Config\Reader as ConfigReader, * @package OAI_Server * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/tracking_record_changes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Server { diff --git a/module/VuFind/src/VuFind/OAI/Server/Auth.php b/module/VuFind/src/VuFind/OAI/Server/Auth.php index 8f66da1e6516c6509a20b8ea032edf9108cf1483..761a9bec172301f6a989fbd3105e32390e3ae403 100644 --- a/module/VuFind/src/VuFind/OAI/Server/Auth.php +++ b/module/VuFind/src/VuFind/OAI/Server/Auth.php @@ -23,7 +23,7 @@ * @package OAI_Server * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/tracking_record_changes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\OAI\Server; use VuFind\OAI\Server as Base; @@ -37,7 +37,7 @@ use VuFind\OAI\Server as Base; * @package OAI_Server * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/tracking_record_changes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Auth extends Base { diff --git a/module/VuFind/src/VuFind/Recommend/AbstractSearchManagerAwareModule.php b/module/VuFind/src/VuFind/Recommend/AbstractSearchManagerAwareModule.php index d9b732acf5d5ed3cf4d2e8173d52048b3beae52d..cba98fa4337127593862f672747157c5a228828a 100644 --- a/module/VuFind/src/VuFind/Recommend/AbstractSearchManagerAwareModule.php +++ b/module/VuFind/src/VuFind/Recommend/AbstractSearchManagerAwareModule.php @@ -24,7 +24,7 @@ * @author Demian Katz <demian.katz@villanova.edu> * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ namespace VuFind\Recommend; use Zend\ServiceManager\ServiceLocatorInterface, @@ -38,7 +38,7 @@ use Zend\ServiceManager\ServiceLocatorInterface, * @author Demian Katz <demian.katz@villanova.edu> * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ abstract class AbstractSearchManagerAwareModule implements RecommendInterface, ServiceLocatorAwareInterface diff --git a/module/VuFind/src/VuFind/Recommend/AuthorFacets.php b/module/VuFind/src/VuFind/Recommend/AuthorFacets.php index 9183257677a8edee8554185d9854d01bbff9d99a..579b088ab9edbed1cbb180025875d02f9c089525 100644 --- a/module/VuFind/src/VuFind/Recommend/AuthorFacets.php +++ b/module/VuFind/src/VuFind/Recommend/AuthorFacets.php @@ -24,7 +24,7 @@ * @author Demian Katz <demian.katz@villanova.edu> * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ namespace VuFind\Recommend; use Zend\Http\Request, Zend\StdLib\Parameters; @@ -40,7 +40,7 @@ use Zend\Http\Request, Zend\StdLib\Parameters; * @author Demian Katz <demian.katz@villanova.edu> * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ class AuthorFacets extends AbstractSearchManagerAwareModule { diff --git a/module/VuFind/src/VuFind/Recommend/AuthorInfo.php b/module/VuFind/src/VuFind/Recommend/AuthorInfo.php index 34d2705732debf778a4428fb5e70bf0177005df9..de0e938429c3794f7be9a07ed0d1fd931ec19d96 100644 --- a/module/VuFind/src/VuFind/Recommend/AuthorInfo.php +++ b/module/VuFind/src/VuFind/Recommend/AuthorInfo.php @@ -23,7 +23,7 @@ * @package Recommendations * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ namespace VuFind\Recommend; use VuFind\Config\Reader as ConfigReader, @@ -39,7 +39,7 @@ use VuFind\Config\Reader as ConfigReader, * @package Recommendations * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki * @view AuthorInfoFacets.phtml */ class AuthorInfo implements RecommendInterface, TranslatorAwareInterface diff --git a/module/VuFind/src/VuFind/Recommend/CatalogResults.php b/module/VuFind/src/VuFind/Recommend/CatalogResults.php index 5c621c7058d16b2773112a8bcedb320ea23ecf0e..f8c235655eeea7d205ddc1d4140f5caac3271550 100644 --- a/module/VuFind/src/VuFind/Recommend/CatalogResults.php +++ b/module/VuFind/src/VuFind/Recommend/CatalogResults.php @@ -23,7 +23,7 @@ * @package Recommendations * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ namespace VuFind\Recommend; @@ -37,7 +37,7 @@ namespace VuFind\Recommend; * @package Recommendations * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ class CatalogResults extends SearchObject { diff --git a/module/VuFind/src/VuFind/Recommend/CollectionSideFacets.php b/module/VuFind/src/VuFind/Recommend/CollectionSideFacets.php index dc98615453167a29e996da52ff61c9956d76899c..eac193a1c9437125ccf802289358c3a9a9f771f8 100644 --- a/module/VuFind/src/VuFind/Recommend/CollectionSideFacets.php +++ b/module/VuFind/src/VuFind/Recommend/CollectionSideFacets.php @@ -23,7 +23,7 @@ * @package Recommendations * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ namespace VuFind\Recommend; @@ -36,7 +36,7 @@ namespace VuFind\Recommend; * @package Recommendations * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ class CollectionSideFacets extends SideFacets { diff --git a/module/VuFind/src/VuFind/Recommend/EuropeanaResults.php b/module/VuFind/src/VuFind/Recommend/EuropeanaResults.php index 09132b5ee65891edf446c53438b6c254e9700b48..beb0178100e884e4b826ad1f2e65f55818dd5827 100644 --- a/module/VuFind/src/VuFind/Recommend/EuropeanaResults.php +++ b/module/VuFind/src/VuFind/Recommend/EuropeanaResults.php @@ -24,7 +24,7 @@ * @author Lutz Biedinger <lutz.biedinger@gmail.com> * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ namespace VuFind\Recommend; use VuFind\Config\Reader as ConfigReader, Zend\Feed\Reader\Reader as FeedReader, @@ -40,7 +40,7 @@ use VuFind\Config\Reader as ConfigReader, Zend\Feed\Reader\Reader as FeedReader, * @author Lutz Biedinger <lutz.biedinger@gmail.com> * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ class EuropeanaResults implements RecommendInterface, \VuFindHttp\HttpServiceAwareInterface, \Zend\Log\LoggerAwareInterface diff --git a/module/VuFind/src/VuFind/Recommend/EuropeanaResultsDeferred.php b/module/VuFind/src/VuFind/Recommend/EuropeanaResultsDeferred.php index e4afb7ccd22ef4ee8eaeaeba4485ba6631a82efb..f0d8ba54e426bc270cbca01ce3b538df2dffc59b 100644 --- a/module/VuFind/src/VuFind/Recommend/EuropeanaResultsDeferred.php +++ b/module/VuFind/src/VuFind/Recommend/EuropeanaResultsDeferred.php @@ -24,7 +24,7 @@ * @author Lutz Biedinger <lutz.biedinger@gmail.com> * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ namespace VuFind\Recommend; @@ -38,7 +38,7 @@ namespace VuFind\Recommend; * @package Recommendations * @author Lutz Biedinger <lutz.biedigner@gmail.com> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ class EuropeanaResultsDeferred implements RecommendInterface { diff --git a/module/VuFind/src/VuFind/Recommend/FavoriteFacets.php b/module/VuFind/src/VuFind/Recommend/FavoriteFacets.php index 69a050f56dec7655211b059e5d2e3c82ef82a36f..a8032f5f38fe8886914af6903599cf5385bd3c5d 100644 --- a/module/VuFind/src/VuFind/Recommend/FavoriteFacets.php +++ b/module/VuFind/src/VuFind/Recommend/FavoriteFacets.php @@ -23,7 +23,7 @@ * @package Recommendations * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ namespace VuFind\Recommend; @@ -36,7 +36,7 @@ namespace VuFind\Recommend; * @package Recommendations * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ class FavoriteFacets extends SideFacets { diff --git a/module/VuFind/src/VuFind/Recommend/OpenLibrarySubjects.php b/module/VuFind/src/VuFind/Recommend/OpenLibrarySubjects.php index f76e1b264adf9edb02412e80a983632778a11aa9..f04650c7f080aba8c2454d99afbe5a658d3bd01c 100644 --- a/module/VuFind/src/VuFind/Recommend/OpenLibrarySubjects.php +++ b/module/VuFind/src/VuFind/Recommend/OpenLibrarySubjects.php @@ -24,7 +24,7 @@ * @author Demian Katz <demian.katz@villanova.edu> * @author Eoghan Ó Carragáin <eoghan.ocarragain@gmail.com> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ namespace VuFind\Recommend; use VuFind\Connection\OpenLibrary, VuFind\Solr\Utils as SolrUtils; @@ -40,7 +40,7 @@ use VuFind\Connection\OpenLibrary, VuFind\Solr\Utils as SolrUtils; * @author Demian Katz <demian.katz@villanova.edu> * @author Eoghan Ó Carragáin <eoghan.ocarragain@gmail.com> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ class OpenLibrarySubjects implements RecommendInterface, \VuFindHttp\HttpServiceAwareInterface diff --git a/module/VuFind/src/VuFind/Recommend/OpenLibrarySubjectsDeferred.php b/module/VuFind/src/VuFind/Recommend/OpenLibrarySubjectsDeferred.php index bed5ccdb8dc2a413910dff93dee8a8991f4fe31b..c5aaef4ae9e59b7d96d006e4d80d5d18a30fa21a 100644 --- a/module/VuFind/src/VuFind/Recommend/OpenLibrarySubjectsDeferred.php +++ b/module/VuFind/src/VuFind/Recommend/OpenLibrarySubjectsDeferred.php @@ -24,7 +24,7 @@ * @author Demian Katz <demian.katz@villanova.edu> * @author Eoghan Ó Carragáin <eoghan.ocarragain@gmail.com> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ namespace VuFind\Recommend; @@ -39,7 +39,7 @@ namespace VuFind\Recommend; * @author Demian Katz <demian.katz@villanova.edu> * @author Eoghan Ó Carragáin <eoghan.ocarragain@gmail.com> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ class OpenLibrarySubjectsDeferred extends OpenLibrarySubjects { diff --git a/module/VuFind/src/VuFind/Recommend/PluginFactory.php b/module/VuFind/src/VuFind/Recommend/PluginFactory.php index a6bec132de04509773015f4131fe9bf90ac435d5..aeb9368fba89045058e25bd4400c1efeeb1a4550 100644 --- a/module/VuFind/src/VuFind/Recommend/PluginFactory.php +++ b/module/VuFind/src/VuFind/Recommend/PluginFactory.php @@ -23,7 +23,7 @@ * @package Recommendations * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ namespace VuFind\Recommend; @@ -34,7 +34,7 @@ namespace VuFind\Recommend; * @package Recommendations * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ class PluginFactory extends \VuFind\ServiceManager\AbstractPluginFactory { diff --git a/module/VuFind/src/VuFind/Recommend/PluginManager.php b/module/VuFind/src/VuFind/Recommend/PluginManager.php index 59f22afe7e8a84fea4daca9940317f6e91e9aa10..0235173620f3034211059b8f0d99892f279483de 100644 --- a/module/VuFind/src/VuFind/Recommend/PluginManager.php +++ b/module/VuFind/src/VuFind/Recommend/PluginManager.php @@ -23,7 +23,7 @@ * @package Recommendations * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ namespace VuFind\Recommend; @@ -34,7 +34,7 @@ namespace VuFind\Recommend; * @package Recommendations * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ class PluginManager extends \VuFind\ServiceManager\AbstractPluginManager { diff --git a/module/VuFind/src/VuFind/Recommend/PubDateVisAjax.php b/module/VuFind/src/VuFind/Recommend/PubDateVisAjax.php index a4b32042b8b11f085b9d338f730863f6cefd86fb..d9c144e8f3f70fb49cd72e6934de42580a0528e9 100644 --- a/module/VuFind/src/VuFind/Recommend/PubDateVisAjax.php +++ b/module/VuFind/src/VuFind/Recommend/PubDateVisAjax.php @@ -23,7 +23,7 @@ * @package Recommendations * @author Till Kinstler <kinstler@gbv.de> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ namespace VuFind\Recommend; @@ -36,7 +36,7 @@ namespace VuFind\Recommend; * @package Recommendations * @author Till Kinstler <kinstler@gbv.de> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ class PubDateVisAjax implements RecommendInterface { diff --git a/module/VuFind/src/VuFind/Recommend/RecommendInterface.php b/module/VuFind/src/VuFind/Recommend/RecommendInterface.php index 47a3e59b09e11b8cff28b844340a6da56751c9e8..3bdf5e690de7e3eb4d03c9918ac4b9c146549c4a 100644 --- a/module/VuFind/src/VuFind/Recommend/RecommendInterface.php +++ b/module/VuFind/src/VuFind/Recommend/RecommendInterface.php @@ -23,7 +23,7 @@ * @package Recommendations * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ namespace VuFind\Recommend; @@ -44,7 +44,7 @@ namespace VuFind\Recommend; * @package Recommendations * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ interface RecommendInterface { diff --git a/module/VuFind/src/VuFind/Recommend/ResultGoogleMapAjax.php b/module/VuFind/src/VuFind/Recommend/ResultGoogleMapAjax.php index 3c775f8bfb93396d6d109654b87fd8f873b025c4..0bbb3996828688b1a81022b63e76e9a934978ac6 100644 --- a/module/VuFind/src/VuFind/Recommend/ResultGoogleMapAjax.php +++ b/module/VuFind/src/VuFind/Recommend/ResultGoogleMapAjax.php @@ -23,7 +23,7 @@ * @package Recommendations * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ namespace VuFind\Recommend; use VuFind\I18n\Translator\TranslatorAwareInterface; @@ -39,7 +39,7 @@ use VuFind\I18n\Translator\TranslatorAwareInterface; * @author Lutz Biedinger <lutz.biedinger@gmail.com> * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki * @view AuthorInfoFacets.phtml */ class ResultGoogleMapAjax implements RecommendInterface, TranslatorAwareInterface diff --git a/module/VuFind/src/VuFind/Recommend/SearchObject.php b/module/VuFind/src/VuFind/Recommend/SearchObject.php index 470f3ccf0ebed8270a41ba7b6cb543acb270d957..af8ddf7a3a0f086d48372a28760ea05a4e908dfc 100644 --- a/module/VuFind/src/VuFind/Recommend/SearchObject.php +++ b/module/VuFind/src/VuFind/Recommend/SearchObject.php @@ -24,7 +24,7 @@ * @package Recommendations * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ namespace VuFind\Recommend; @@ -36,7 +36,7 @@ namespace VuFind\Recommend; * @package Recommendations * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ abstract class SearchObject extends AbstractSearchManagerAwareModule { diff --git a/module/VuFind/src/VuFind/Recommend/SideFacets.php b/module/VuFind/src/VuFind/Recommend/SideFacets.php index 20e3c29d9171da58da98d1987cbcc8216f48d6c8..5c274c81285e44e6e079eececcce8d037b552b02 100644 --- a/module/VuFind/src/VuFind/Recommend/SideFacets.php +++ b/module/VuFind/src/VuFind/Recommend/SideFacets.php @@ -23,7 +23,7 @@ * @package Recommendations * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ namespace VuFind\Recommend; use VuFind\Config\Reader as ConfigReader, VuFind\Solr\Utils as SolrUtils; @@ -37,7 +37,7 @@ use VuFind\Config\Reader as ConfigReader, VuFind\Solr\Utils as SolrUtils; * @package Recommendations * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ class SideFacets implements RecommendInterface { diff --git a/module/VuFind/src/VuFind/Recommend/SummonDatabases.php b/module/VuFind/src/VuFind/Recommend/SummonDatabases.php index 954279f29a9974b5502d3ec4dc427658140c4b28..97548917684fb81492a9b771ab46184e421b81cf 100644 --- a/module/VuFind/src/VuFind/Recommend/SummonDatabases.php +++ b/module/VuFind/src/VuFind/Recommend/SummonDatabases.php @@ -23,7 +23,7 @@ * @package Recommendations * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ namespace VuFind\Recommend; @@ -36,7 +36,7 @@ namespace VuFind\Recommend; * @package Recommendations * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ class SummonDatabases extends AbstractSearchManagerAwareModule { diff --git a/module/VuFind/src/VuFind/Recommend/SummonResults.php b/module/VuFind/src/VuFind/Recommend/SummonResults.php index 586ffaecd5f786e0313ea591e2cdc62f92aedf35..4896325ad7a5841874d22d124c6bd17d215190ec 100644 --- a/module/VuFind/src/VuFind/Recommend/SummonResults.php +++ b/module/VuFind/src/VuFind/Recommend/SummonResults.php @@ -23,7 +23,7 @@ * @package Recommendations * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ namespace VuFind\Recommend; @@ -36,7 +36,7 @@ namespace VuFind\Recommend; * @package Recommendations * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ class SummonResults extends SearchObject { diff --git a/module/VuFind/src/VuFind/Recommend/SwitchType.php b/module/VuFind/src/VuFind/Recommend/SwitchType.php index 1ff9cc97b45370b67a135802b723f3b120f951f8..9198fd8d93601f43d386d1dd4d7ce9b3393319e1 100644 --- a/module/VuFind/src/VuFind/Recommend/SwitchType.php +++ b/module/VuFind/src/VuFind/Recommend/SwitchType.php @@ -24,7 +24,7 @@ * @author Demian Katz <demian.katz@villanova.edu> * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ namespace VuFind\Recommend; @@ -38,7 +38,7 @@ namespace VuFind\Recommend; * @author Demian Katz <demian.katz@villanova.edu> * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ class SwitchType implements RecommendInterface { diff --git a/module/VuFind/src/VuFind/Recommend/TopFacets.php b/module/VuFind/src/VuFind/Recommend/TopFacets.php index 1570e76d2ad586785d343ff69b72cdd6d8ec7ef3..1d934e3b8f5c2f243fb9ca4fd93e613af060762c 100644 --- a/module/VuFind/src/VuFind/Recommend/TopFacets.php +++ b/module/VuFind/src/VuFind/Recommend/TopFacets.php @@ -24,7 +24,7 @@ * @author Demian Katz <demian.katz@villanova.edu> * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ namespace VuFind\Recommend; use VuFind\Config\Reader as ConfigReader; @@ -39,7 +39,7 @@ use VuFind\Config\Reader as ConfigReader; * @author Demian Katz <demian.katz@villanova.edu> * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ class TopFacets implements RecommendInterface { diff --git a/module/VuFind/src/VuFind/Recommend/WorldCatIdentities.php b/module/VuFind/src/VuFind/Recommend/WorldCatIdentities.php index d07c3cf03b8aaf234cba59d295734b8c95ff10a6..a834384d22f75dc8e0aa8988d23d49b0e1c0fcf6 100644 --- a/module/VuFind/src/VuFind/Recommend/WorldCatIdentities.php +++ b/module/VuFind/src/VuFind/Recommend/WorldCatIdentities.php @@ -23,7 +23,7 @@ * @package Recommendations * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ namespace VuFind\Recommend; use VuFind\Connection\WorldCatUtils; @@ -37,7 +37,7 @@ use VuFind\Connection\WorldCatUtils; * @package Recommendations * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ class WorldCatIdentities implements RecommendInterface { diff --git a/module/VuFind/src/VuFind/Recommend/WorldCatTerms.php b/module/VuFind/src/VuFind/Recommend/WorldCatTerms.php index 07dfd42d1fc592192e000d60f540f249ba01f160..1d82f770c8c3905f293072b40d5057a46a41c116 100644 --- a/module/VuFind/src/VuFind/Recommend/WorldCatTerms.php +++ b/module/VuFind/src/VuFind/Recommend/WorldCatTerms.php @@ -23,7 +23,7 @@ * @package Recommendations * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ namespace VuFind\Recommend; use VuFind\Connection\WorldCatUtils; @@ -37,7 +37,7 @@ use VuFind\Connection\WorldCatUtils; * @package Recommendations * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:recommendation_modules Wiki */ class WorldCatTerms implements RecommendInterface { diff --git a/module/VuFind/src/VuFind/RecordDriver/Missing.php b/module/VuFind/src/VuFind/RecordDriver/Missing.php index f0d2ed40ef8772342bad47662f8b2ded3a3e1fcf..9f56b568b5dab6c223e3825d3524dc7b455e6b16 100644 --- a/module/VuFind/src/VuFind/RecordDriver/Missing.php +++ b/module/VuFind/src/VuFind/RecordDriver/Missing.php @@ -24,7 +24,7 @@ * @package RecordDrivers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/other_than_marc Wiki + * @link http://vufind.org/wiki/vufind2:record_drivers Wiki */ namespace VuFind\RecordDriver; @@ -36,7 +36,7 @@ namespace VuFind\RecordDriver; * @package RecordDrivers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/other_than_marc Wiki + * @link http://vufind.org/wiki/vufind2:record_drivers Wiki */ class Missing extends SolrDefault { diff --git a/module/VuFind/src/VuFind/RecordDriver/PluginFactory.php b/module/VuFind/src/VuFind/RecordDriver/PluginFactory.php index a53f12045bfe0b543adbd79bdf656d7dab392152..a1b745d584969534b1508eff9bc2df474d24c3bd 100644 --- a/module/VuFind/src/VuFind/RecordDriver/PluginFactory.php +++ b/module/VuFind/src/VuFind/RecordDriver/PluginFactory.php @@ -23,7 +23,7 @@ * @package RecordDrivers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:record_drivers Wiki */ namespace VuFind\RecordDriver; @@ -34,7 +34,7 @@ namespace VuFind\RecordDriver; * @package RecordDrivers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:record_drivers Wiki */ class PluginFactory extends \VuFind\ServiceManager\AbstractPluginFactory { diff --git a/module/VuFind/src/VuFind/RecordDriver/PluginManager.php b/module/VuFind/src/VuFind/RecordDriver/PluginManager.php index 5dc071a54965f2ff296663af96f78aa2203d135e..6a2bbd2462b01df6d1605a5c122fabc1fdbcc1d3 100644 --- a/module/VuFind/src/VuFind/RecordDriver/PluginManager.php +++ b/module/VuFind/src/VuFind/RecordDriver/PluginManager.php @@ -23,7 +23,7 @@ * @package RecordDrivers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:record_drivers Wiki */ namespace VuFind\RecordDriver; @@ -34,7 +34,7 @@ namespace VuFind\RecordDriver; * @package RecordDrivers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:record_drivers Wiki */ class PluginManager extends \VuFind\ServiceManager\AbstractPluginManager { diff --git a/module/VuFind/src/VuFind/RecordDriver/SolrAuth.php b/module/VuFind/src/VuFind/RecordDriver/SolrAuth.php index da979b6a631d61c296ad496d4886fd7563e3ce72..1c40634083807c1d8243dae93828fff37d1557ab 100644 --- a/module/VuFind/src/VuFind/RecordDriver/SolrAuth.php +++ b/module/VuFind/src/VuFind/RecordDriver/SolrAuth.php @@ -23,7 +23,7 @@ * @package RecordDrivers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/other_than_marc Wiki + * @link http://vufind.org/wiki/vufind2:record_drivers Wiki */ namespace VuFind\RecordDriver; @@ -34,7 +34,7 @@ namespace VuFind\RecordDriver; * @package RecordDrivers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/other_than_marc Wiki + * @link http://vufind.org/wiki/vufind2:record_drivers Wiki */ class SolrAuth extends SolrMarc { diff --git a/module/VuFind/src/VuFind/RecordDriver/SolrDefault.php b/module/VuFind/src/VuFind/RecordDriver/SolrDefault.php index d06fb32fe55385a5c269969bc91ef4088d764828..ef6a71f889ae3627c7730be107e69034e30c3695 100644 --- a/module/VuFind/src/VuFind/RecordDriver/SolrDefault.php +++ b/module/VuFind/src/VuFind/RecordDriver/SolrDefault.php @@ -24,7 +24,7 @@ * @package RecordDrivers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/other_than_marc Wiki + * @link http://vufind.org/wiki/vufind2:record_drivers Wiki */ namespace VuFind\RecordDriver; use VuFind\Code\ISBN, VuFind\Config\Reader as ConfigReader; @@ -39,7 +39,7 @@ use VuFind\Code\ISBN, VuFind\Config\Reader as ConfigReader; * @package RecordDrivers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/other_than_marc Wiki + * @link http://vufind.org/wiki/vufind2:record_drivers Wiki */ class SolrDefault extends AbstractBase { diff --git a/module/VuFind/src/VuFind/RecordDriver/SolrMarc.php b/module/VuFind/src/VuFind/RecordDriver/SolrMarc.php index 0455866089620cb229a8e95cf925e88a534d347c..b016935fb0e482c7316983ffa7a83cf7b18597e4 100644 --- a/module/VuFind/src/VuFind/RecordDriver/SolrMarc.php +++ b/module/VuFind/src/VuFind/RecordDriver/SolrMarc.php @@ -23,7 +23,7 @@ * @package RecordDrivers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/other_than_marc Wiki + * @link http://vufind.org/wiki/vufind2:record_drivers Wiki */ namespace VuFind\RecordDriver; use VuFind\Config\Reader as ConfigReader, @@ -40,7 +40,7 @@ use VuFind\Config\Reader as ConfigReader, * @package RecordDrivers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/other_than_marc Wiki + * @link http://vufind.org/wiki/vufind2:record_drivers Wiki */ class SolrMarc extends SolrDefault { diff --git a/module/VuFind/src/VuFind/RecordDriver/SolrReserves.php b/module/VuFind/src/VuFind/RecordDriver/SolrReserves.php index 1e58350b140498d9561f70384e110c05bc752db5..b0f1ed9302d924c0f930067805b68b33ebaa7142 100644 --- a/module/VuFind/src/VuFind/RecordDriver/SolrReserves.php +++ b/module/VuFind/src/VuFind/RecordDriver/SolrReserves.php @@ -23,7 +23,7 @@ * @package RecordDrivers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/other_than_marc Wiki + * @link http://vufind.org/wiki/vufind2:record_drivers Wiki */ namespace VuFind\RecordDriver; @@ -34,7 +34,7 @@ namespace VuFind\RecordDriver; * @package RecordDrivers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/other_than_marc Wiki + * @link http://vufind.org/wiki/vufind2:record_drivers Wiki */ class SolrReserves extends SolrDefault { diff --git a/module/VuFind/src/VuFind/RecordDriver/SolrVudl.php b/module/VuFind/src/VuFind/RecordDriver/SolrVudl.php index eb65949cf465b8acec11e5eeee2e7d795d376acb..b8eb201a1217c096b72c133fc26898de5ab01118 100644 --- a/module/VuFind/src/VuFind/RecordDriver/SolrVudl.php +++ b/module/VuFind/src/VuFind/RecordDriver/SolrVudl.php @@ -23,7 +23,7 @@ * @package RecordDrivers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/other_than_marc Wiki + * @link http://vufind.org/wiki/vufind2:record_drivers Wiki */ namespace VuFind\RecordDriver; @@ -34,7 +34,7 @@ namespace VuFind\RecordDriver; * @package RecordDrivers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/other_than_marc Wiki + * @link http://vufind.org/wiki/vufind2:record_drivers Wiki */ class SolrVudl extends SolrDefault { diff --git a/module/VuFind/src/VuFind/RecordDriver/Summon.php b/module/VuFind/src/VuFind/RecordDriver/Summon.php index 9e29444902165ca8857f1993d96b153b5cbf27fa..fdb7ecd587487668f0228621420602e0d3ab7526 100644 --- a/module/VuFind/src/VuFind/RecordDriver/Summon.php +++ b/module/VuFind/src/VuFind/RecordDriver/Summon.php @@ -23,7 +23,7 @@ * @package RecordDrivers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/other_than_marc Wiki + * @link http://vufind.org/wiki/vufind2:record_drivers Wiki */ namespace VuFind\RecordDriver; use VuFind\Config\Reader as ConfigReader, VuFind\Date\Converter as DateConverter; @@ -35,7 +35,7 @@ use VuFind\Config\Reader as ConfigReader, VuFind\Date\Converter as DateConverter * @package RecordDrivers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/other_than_marc Wiki + * @link http://vufind.org/wiki/vufind2:record_drivers Wiki */ class Summon extends SolrDefault { diff --git a/module/VuFind/src/VuFind/RecordDriver/WorldCat.php b/module/VuFind/src/VuFind/RecordDriver/WorldCat.php index f4ffe1ce46b89e2c486e33e338b2b3ad9cfba75c..87aca4d0959988cb02edc99d47a07f1ef2813264 100644 --- a/module/VuFind/src/VuFind/RecordDriver/WorldCat.php +++ b/module/VuFind/src/VuFind/RecordDriver/WorldCat.php @@ -23,7 +23,7 @@ * @package RecordDrivers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/other_than_marc Wiki + * @link http://vufind.org/wiki/vufind2:record_drivers Wiki */ namespace VuFind\RecordDriver; @@ -34,7 +34,7 @@ namespace VuFind\RecordDriver; * @package RecordDrivers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/other_than_marc Wiki + * @link http://vufind.org/wiki/vufind2:record_drivers Wiki */ class WorldCat extends SolrMarc { diff --git a/module/VuFind/src/VuFind/RecordTab/AbstractBase.php b/module/VuFind/src/VuFind/RecordTab/AbstractBase.php index db509b6a0678d5585fb25122bc3a0cfd0beef785..6e38dfa9f6e5e117e5b76b6e0826b3084e97d449 100644 --- a/module/VuFind/src/VuFind/RecordTab/AbstractBase.php +++ b/module/VuFind/src/VuFind/RecordTab/AbstractBase.php @@ -23,7 +23,7 @@ * @package RecordTabs * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:record_tabs Wiki */ namespace VuFind\RecordTab; @@ -34,7 +34,7 @@ namespace VuFind\RecordTab; * @package RecordTabs * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:record_tabs Wiki */ abstract class AbstractBase implements TabInterface { diff --git a/module/VuFind/src/VuFind/RecordTab/CollectionHierarchyTree.php b/module/VuFind/src/VuFind/RecordTab/CollectionHierarchyTree.php index f0f275ae37f8ccc84788fc37abb9b6fa6accb720..6ce6fdb5c80468eaf6a000d19221fa23ff5de45d 100644 --- a/module/VuFind/src/VuFind/RecordTab/CollectionHierarchyTree.php +++ b/module/VuFind/src/VuFind/RecordTab/CollectionHierarchyTree.php @@ -23,7 +23,7 @@ * @package RecordTabs * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:record_tabs Wiki */ namespace VuFind\RecordTab; @@ -34,7 +34,7 @@ namespace VuFind\RecordTab; * @package RecordTabs * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:record_tabs Wiki */ class CollectionHierarchyTree extends HierarchyTree { diff --git a/module/VuFind/src/VuFind/RecordTab/CollectionList.php b/module/VuFind/src/VuFind/RecordTab/CollectionList.php index 41076b4a21a984edbae1edf6e67e716cae211c18..50170e0b53c54157228a5c6feaac3ea1cdd16bf7 100644 --- a/module/VuFind/src/VuFind/RecordTab/CollectionList.php +++ b/module/VuFind/src/VuFind/RecordTab/CollectionList.php @@ -23,7 +23,7 @@ * @package RecordTabs * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:record_tabs Wiki */ namespace VuFind\RecordTab; @@ -34,7 +34,7 @@ namespace VuFind\RecordTab; * @package RecordTabs * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:record_tabs Wiki */ class CollectionList extends AbstractBase { diff --git a/module/VuFind/src/VuFind/RecordTab/Description.php b/module/VuFind/src/VuFind/RecordTab/Description.php index d5cfe8a706046cacba1cd129283861f683470016..da87d0ebd19814648a4568e324d30c993f0fa2bb 100644 --- a/module/VuFind/src/VuFind/RecordTab/Description.php +++ b/module/VuFind/src/VuFind/RecordTab/Description.php @@ -23,7 +23,7 @@ * @package RecordTabs * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:record_tabs Wiki */ namespace VuFind\RecordTab; @@ -34,7 +34,7 @@ namespace VuFind\RecordTab; * @package RecordTabs * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:record_tabs Wiki */ class Description extends AbstractBase { diff --git a/module/VuFind/src/VuFind/RecordTab/Excerpt.php b/module/VuFind/src/VuFind/RecordTab/Excerpt.php index 0c166d7c6f54a4e7825e60d6d6f986740e9d65a7..9532efdcd558f1512908bdd826198daa062d51b5 100644 --- a/module/VuFind/src/VuFind/RecordTab/Excerpt.php +++ b/module/VuFind/src/VuFind/RecordTab/Excerpt.php @@ -23,7 +23,7 @@ * @package RecordTabs * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:record_tabs Wiki */ namespace VuFind\RecordTab; use VuFind\Config\Reader as ConfigReader; @@ -35,7 +35,7 @@ use VuFind\Config\Reader as ConfigReader; * @package RecordTabs * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:record_tabs Wiki */ class Excerpt extends AbstractBase { diff --git a/module/VuFind/src/VuFind/RecordTab/HierarchyTree.php b/module/VuFind/src/VuFind/RecordTab/HierarchyTree.php index 93cb4db462b820ddf4a4d3af41bb82426baa8cf6..ec17018ba3dbe20dc1e223dc0977e7614d2baa29 100644 --- a/module/VuFind/src/VuFind/RecordTab/HierarchyTree.php +++ b/module/VuFind/src/VuFind/RecordTab/HierarchyTree.php @@ -23,7 +23,7 @@ * @package RecordTabs * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:record_tabs Wiki */ namespace VuFind\RecordTab; use VuFind\Config\Reader as ConfigReader; @@ -35,7 +35,7 @@ use VuFind\Config\Reader as ConfigReader; * @package RecordTabs * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:record_tabs Wiki */ class HierarchyTree extends AbstractBase { diff --git a/module/VuFind/src/VuFind/RecordTab/HoldingsILS.php b/module/VuFind/src/VuFind/RecordTab/HoldingsILS.php index 2c4d17f8c672b0ec06102b7aae5ad161df896776..cc089fe8b6aae0ee8c930b4018f3d5339cca6e11 100644 --- a/module/VuFind/src/VuFind/RecordTab/HoldingsILS.php +++ b/module/VuFind/src/VuFind/RecordTab/HoldingsILS.php @@ -23,7 +23,7 @@ * @package RecordTabs * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:record_tabs Wiki */ namespace VuFind\RecordTab; @@ -34,7 +34,7 @@ namespace VuFind\RecordTab; * @package RecordTabs * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:record_tabs Wiki */ class HoldingsILS extends AbstractBase { diff --git a/module/VuFind/src/VuFind/RecordTab/HoldingsWorldCat.php b/module/VuFind/src/VuFind/RecordTab/HoldingsWorldCat.php index a3777d1931dc1acde7a03ce354588bd7ed4c527a..1242c6b37d2f0b33bcc9c62fe0e93b2f3a515f25 100644 --- a/module/VuFind/src/VuFind/RecordTab/HoldingsWorldCat.php +++ b/module/VuFind/src/VuFind/RecordTab/HoldingsWorldCat.php @@ -23,7 +23,7 @@ * @package RecordTabs * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:record_tabs Wiki */ namespace VuFind\RecordTab; @@ -34,7 +34,7 @@ namespace VuFind\RecordTab; * @package RecordTabs * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:record_tabs Wiki */ class HoldingsWorldCat extends AbstractBase { diff --git a/module/VuFind/src/VuFind/RecordTab/Map.php b/module/VuFind/src/VuFind/RecordTab/Map.php index 99f07849a8d5ed05bfbd210240260d24cebecc4f..b3a72940252402c745063539164218becdb7a03a 100644 --- a/module/VuFind/src/VuFind/RecordTab/Map.php +++ b/module/VuFind/src/VuFind/RecordTab/Map.php @@ -23,7 +23,7 @@ * @package RecordTabs * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:record_tabs Wiki */ namespace VuFind\RecordTab; use VuFind\Config\Reader as ConfigReader; @@ -35,7 +35,7 @@ use VuFind\Config\Reader as ConfigReader; * @package RecordTabs * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:record_tabs Wiki */ class Map extends AbstractBase implements \VuFind\I18n\Translator\TranslatorAwareInterface diff --git a/module/VuFind/src/VuFind/RecordTab/PluginFactory.php b/module/VuFind/src/VuFind/RecordTab/PluginFactory.php index 9b8b86a232088a6d100d1d6f8403f1af2dfd001e..1210cc330096accf038ce8aa4b80f16dd45919de 100644 --- a/module/VuFind/src/VuFind/RecordTab/PluginFactory.php +++ b/module/VuFind/src/VuFind/RecordTab/PluginFactory.php @@ -23,7 +23,7 @@ * @package RecordTabs * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:record_tabs Wiki */ namespace VuFind\RecordTab; @@ -34,7 +34,7 @@ namespace VuFind\RecordTab; * @package RecordTabs * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:record_tabs Wiki */ class PluginFactory extends \VuFind\ServiceManager\AbstractPluginFactory { diff --git a/module/VuFind/src/VuFind/RecordTab/PluginManager.php b/module/VuFind/src/VuFind/RecordTab/PluginManager.php index cfaf29256793be990bb05600f685c9bd52365893..c5ff9869a396ed14c5e728d3f057394f660fd8f6 100644 --- a/module/VuFind/src/VuFind/RecordTab/PluginManager.php +++ b/module/VuFind/src/VuFind/RecordTab/PluginManager.php @@ -23,7 +23,7 @@ * @package RecordTabs * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:record_tabs Wiki */ namespace VuFind\RecordTab; @@ -34,7 +34,7 @@ namespace VuFind\RecordTab; * @package RecordTabs * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:record_tabs Wiki */ class PluginManager extends \VuFind\ServiceManager\AbstractPluginManager { diff --git a/module/VuFind/src/VuFind/RecordTab/Reviews.php b/module/VuFind/src/VuFind/RecordTab/Reviews.php index e0b7d61d4ce74efef18e2229da0c0ff35ab82500..3b00d37c3d3947a4f365a001dd807747d5c2416e 100644 --- a/module/VuFind/src/VuFind/RecordTab/Reviews.php +++ b/module/VuFind/src/VuFind/RecordTab/Reviews.php @@ -23,7 +23,7 @@ * @package RecordTabs * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:record_tabs Wiki */ namespace VuFind\RecordTab; use VuFind\Config\Reader as ConfigReader; @@ -35,7 +35,7 @@ use VuFind\Config\Reader as ConfigReader; * @package RecordTabs * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:record_tabs Wiki */ class Reviews extends AbstractBase { diff --git a/module/VuFind/src/VuFind/RecordTab/StaffViewArray.php b/module/VuFind/src/VuFind/RecordTab/StaffViewArray.php index cf67d370a55055a1a50b2bba373283c680bb2bf2..cf58f7127186d2f50ad96b891b0319e6c3c6b4a6 100644 --- a/module/VuFind/src/VuFind/RecordTab/StaffViewArray.php +++ b/module/VuFind/src/VuFind/RecordTab/StaffViewArray.php @@ -23,7 +23,7 @@ * @package RecordTabs * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:record_tabs Wiki */ namespace VuFind\RecordTab; @@ -34,7 +34,7 @@ namespace VuFind\RecordTab; * @package RecordTabs * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:record_tabs Wiki */ class StaffViewArray extends AbstractBase { diff --git a/module/VuFind/src/VuFind/RecordTab/StaffViewMARC.php b/module/VuFind/src/VuFind/RecordTab/StaffViewMARC.php index 42852e58500ec7839154ae2d2e793fcfe9ab15fd..575980955b5bca46b0e4ace871ee648e60016e16 100644 --- a/module/VuFind/src/VuFind/RecordTab/StaffViewMARC.php +++ b/module/VuFind/src/VuFind/RecordTab/StaffViewMARC.php @@ -23,7 +23,7 @@ * @package RecordTabs * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:record_tabs Wiki */ namespace VuFind\RecordTab; @@ -34,7 +34,7 @@ namespace VuFind\RecordTab; * @package RecordTabs * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:record_tabs Wiki */ class StaffViewMARC extends AbstractBase { diff --git a/module/VuFind/src/VuFind/RecordTab/TOC.php b/module/VuFind/src/VuFind/RecordTab/TOC.php index cac1b033280fdbe30f8f270ab6e2ff2ee31f4f44..84ab8667334cb98216193e079141bf428961859c 100644 --- a/module/VuFind/src/VuFind/RecordTab/TOC.php +++ b/module/VuFind/src/VuFind/RecordTab/TOC.php @@ -23,7 +23,7 @@ * @package RecordTabs * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:record_tabs Wiki */ namespace VuFind\RecordTab; @@ -34,7 +34,7 @@ namespace VuFind\RecordTab; * @package RecordTabs * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:record_tabs Wiki */ class TOC extends AbstractBase { diff --git a/module/VuFind/src/VuFind/RecordTab/TabInterface.php b/module/VuFind/src/VuFind/RecordTab/TabInterface.php index 5813d335b7ef539e476fa68aea96af7ac7354f3b..786875e95d9547291b9941240aa68d552c922ad5 100644 --- a/module/VuFind/src/VuFind/RecordTab/TabInterface.php +++ b/module/VuFind/src/VuFind/RecordTab/TabInterface.php @@ -23,7 +23,7 @@ * @package RecordTabs * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:record_tabs Wiki */ namespace VuFind\RecordTab; @@ -34,7 +34,7 @@ namespace VuFind\RecordTab; * @package RecordTabs * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:record_tabs Wiki */ interface TabInterface { diff --git a/module/VuFind/src/VuFind/RecordTab/UserComments.php b/module/VuFind/src/VuFind/RecordTab/UserComments.php index 33580341a4a3a631f1af1881e49fbf4a497c6124..77db6c86bec85c8555b986c1377ff9803be5b0b0 100644 --- a/module/VuFind/src/VuFind/RecordTab/UserComments.php +++ b/module/VuFind/src/VuFind/RecordTab/UserComments.php @@ -23,7 +23,7 @@ * @package RecordTabs * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:record_tabs Wiki */ namespace VuFind\RecordTab; @@ -34,7 +34,7 @@ namespace VuFind\RecordTab; * @package RecordTabs * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:record_tabs Wiki */ class UserComments extends AbstractBase { diff --git a/module/VuFind/src/VuFind/Related/AbstractServiceLocator.php b/module/VuFind/src/VuFind/Related/AbstractServiceLocator.php index 7a24e76015842f93c550eda9adc6825a03e80881..83cc546c9883d30e29dc337a54dfddc68822f9f8 100644 --- a/module/VuFind/src/VuFind/Related/AbstractServiceLocator.php +++ b/module/VuFind/src/VuFind/Related/AbstractServiceLocator.php @@ -23,7 +23,7 @@ * @package Related_Records * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:building_a_related_record_module Wiki */ namespace VuFind\Related; use Zend\ServiceManager\ServiceLocatorInterface, @@ -36,7 +36,7 @@ use Zend\ServiceManager\ServiceLocatorInterface, * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:building_a_related_record_module Wiki */ abstract class AbstractServiceLocator implements RelatedInterface, ServiceLocatorAwareInterface diff --git a/module/VuFind/src/VuFind/Related/Editions.php b/module/VuFind/src/VuFind/Related/Editions.php index a1eed7414ff3964b46e2fdf0d81bcc72374f3630..7b4440fd5754ec92ac49d1b7be3bee50033c1337 100644 --- a/module/VuFind/src/VuFind/Related/Editions.php +++ b/module/VuFind/src/VuFind/Related/Editions.php @@ -23,7 +23,7 @@ * @package Related_Records * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:building_a_related_record_module Wiki */ namespace VuFind\Related; @@ -34,7 +34,7 @@ namespace VuFind\Related; * @package Related_Records * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:building_a_related_record_module Wiki */ class Editions extends AbstractServiceLocator { diff --git a/module/VuFind/src/VuFind/Related/PluginFactory.php b/module/VuFind/src/VuFind/Related/PluginFactory.php index 59ae94f344164d6381af4b9fa24179c7b5cb9a85..cde48e9a266e344ff2f8459b3da044d05703fe68 100644 --- a/module/VuFind/src/VuFind/Related/PluginFactory.php +++ b/module/VuFind/src/VuFind/Related/PluginFactory.php @@ -23,7 +23,7 @@ * @package Related_Records * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:building_a_related_record_module Wiki */ namespace VuFind\Related; @@ -34,7 +34,7 @@ namespace VuFind\Related; * @package Related_Records * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:building_a_related_record_module Wiki */ class PluginFactory extends \VuFind\ServiceManager\AbstractPluginFactory { diff --git a/module/VuFind/src/VuFind/Related/PluginManager.php b/module/VuFind/src/VuFind/Related/PluginManager.php index 74760bfb1587a340cbb25a43f01452e1890c5786..2698edf1f4b998c0c2f4bdd0adad7dbb2566c18e 100644 --- a/module/VuFind/src/VuFind/Related/PluginManager.php +++ b/module/VuFind/src/VuFind/Related/PluginManager.php @@ -23,7 +23,7 @@ * @package Related_Records * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:building_a_related_record_module Wiki */ namespace VuFind\Related; @@ -34,7 +34,7 @@ namespace VuFind\Related; * @package Related_Records * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:building_a_related_record_module Wiki */ class PluginManager extends \VuFind\ServiceManager\AbstractPluginManager { diff --git a/module/VuFind/src/VuFind/Related/RelatedInterface.php b/module/VuFind/src/VuFind/Related/RelatedInterface.php index fbea92e06dce7fbf462f95ccb970c6bcbc60aef6..0b22247121055b0c7c6268730a781e3ea15ee7d7 100644 --- a/module/VuFind/src/VuFind/Related/RelatedInterface.php +++ b/module/VuFind/src/VuFind/Related/RelatedInterface.php @@ -23,7 +23,7 @@ * @package Related_Records * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:building_a_related_record_module Wiki */ namespace VuFind\Related; @@ -44,7 +44,7 @@ namespace VuFind\Related; * @package Related_Records * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:building_a_related_record_module Wiki */ interface RelatedInterface { diff --git a/module/VuFind/src/VuFind/Related/Similar.php b/module/VuFind/src/VuFind/Related/Similar.php index f0d7d10cb27e6b564a2828dd846b3f0965dc7697..3435770c1cda4399e345251d1a8d1c09abda5bd5 100644 --- a/module/VuFind/src/VuFind/Related/Similar.php +++ b/module/VuFind/src/VuFind/Related/Similar.php @@ -23,7 +23,7 @@ * @package Related_Records * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:building_a_related_record_module Wiki */ namespace VuFind\Related; @@ -34,7 +34,7 @@ namespace VuFind\Related; * @package Related_Records * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:building_a_related_record_module Wiki */ class Similar extends AbstractServiceLocator { diff --git a/module/VuFind/src/VuFind/Related/WorldCatEditions.php b/module/VuFind/src/VuFind/Related/WorldCatEditions.php index 7c6a243f24e27a40fd192d7218360b378436e816..ef5bb0f98c85e88587b599f9181d9b74b7d52f3d 100644 --- a/module/VuFind/src/VuFind/Related/WorldCatEditions.php +++ b/module/VuFind/src/VuFind/Related/WorldCatEditions.php @@ -23,7 +23,7 @@ * @package Related_Records * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:building_a_related_record_module Wiki */ namespace VuFind\Related; @@ -34,7 +34,7 @@ namespace VuFind\Related; * @package Related_Records * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:building_a_related_record_module Wiki */ class WorldCatEditions extends Editions { diff --git a/module/VuFind/src/VuFind/Related/WorldCatSimilar.php b/module/VuFind/src/VuFind/Related/WorldCatSimilar.php index c2eb1b1aa6c853f5eba3dbbd1eaa380aafca383f..8c34cdc7892459c74e3998cd2e878d805eb21dc3 100644 --- a/module/VuFind/src/VuFind/Related/WorldCatSimilar.php +++ b/module/VuFind/src/VuFind/Related/WorldCatSimilar.php @@ -23,7 +23,7 @@ * @package Related_Records * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:building_a_related_record_module Wiki */ namespace VuFind\Related; @@ -34,7 +34,7 @@ namespace VuFind\Related; * @package Related_Records * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:building_a_related_record_module Wiki */ class WorldCatSimilar extends Similar { diff --git a/module/VuFind/src/VuFind/Reserves/CsvReader.php b/module/VuFind/src/VuFind/Reserves/CsvReader.php index fe4205310ada4c10579229d30425d1904dfe6328..f5b3cce6b4965f86f493b245d0c7f7a85d7b8c9b 100644 --- a/module/VuFind/src/VuFind/Reserves/CsvReader.php +++ b/module/VuFind/src/VuFind/Reserves/CsvReader.php @@ -23,7 +23,7 @@ * @package Reserves * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki Wiki */ namespace VuFind\Reserves; diff --git a/module/VuFind/src/VuFind/Resolver/Connection.php b/module/VuFind/src/VuFind/Resolver/Connection.php index 6f6e764a075efcae2c02eda9ecaaf62eef7690f5..ee22d7bb3c84d33d0d4f113de588083d2b078d03 100644 --- a/module/VuFind/src/VuFind/Resolver/Connection.php +++ b/module/VuFind/src/VuFind/Resolver/Connection.php @@ -26,7 +26,7 @@ * @package Resolver_Drivers * @author Graham Seaman <Graham.Seaman@rhul.ac.uk> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_link_resolver_driver Wiki + * @link http://vufind.org/wiki/vufind2:link_resolver_drivers Wiki */ namespace VuFind\Resolver; use VuFind\Config\Reader as ConfigReader; @@ -44,7 +44,7 @@ use VuFind\Config\Reader as ConfigReader; * @package Resolver_Drivers * @author Graham Seaman <Graham.Seaman@rhul.ac.uk> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_link_resolver_driver Wiki + * @link http://vufind.org/wiki/vufind2:link_resolver_drivers Wiki */ class Connection { diff --git a/module/VuFind/src/VuFind/Resolver/Driver/DriverInterface.php b/module/VuFind/src/VuFind/Resolver/Driver/DriverInterface.php index 2fbef98f960ecd41c1ad2771e0841310dea8ef16..580f34f2e8ae5d48e586e198487dc142e2a65c19 100644 --- a/module/VuFind/src/VuFind/Resolver/Driver/DriverInterface.php +++ b/module/VuFind/src/VuFind/Resolver/Driver/DriverInterface.php @@ -26,7 +26,7 @@ * @package Resolver_Drivers * @author Graham Seaman <Graham.Seaman@rhul.ac.uk> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_link_resolver_driver Wiki + * @link http://vufind.org/wiki/vufind2:link_resolver_drivers Wiki */ namespace VuFind\Resolver\Driver; @@ -40,7 +40,7 @@ namespace VuFind\Resolver\Driver; * @package Resolver_Drivers * @author Graham Seaman <Graham.Seaman@rhul.ac.uk> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_link_resolver_driver Wiki + * @link http://vufind.org/wiki/vufind2:link_resolver_drivers Wiki */ interface DriverInterface { diff --git a/module/VuFind/src/VuFind/Resolver/Driver/Ezb.php b/module/VuFind/src/VuFind/Resolver/Driver/Ezb.php index 702e9ecea1eb347675b855117e009a42c5f32a7d..5c4a7516eb8ec0199c14f90ea1efcb9363f25bc7 100644 --- a/module/VuFind/src/VuFind/Resolver/Driver/Ezb.php +++ b/module/VuFind/src/VuFind/Resolver/Driver/Ezb.php @@ -28,7 +28,7 @@ * @package Resolver_Drivers * @author Markus Fischer <info@flyingfischer.ch> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_link_resolver_driver Wiki + * @link http://vufind.org/wiki/vufind2:link_resolver_drivers Wiki */ namespace VuFind\Resolver\Driver; use DOMDocument, DOMXpath, VuFind\Config\Reader as ConfigReader; @@ -40,7 +40,7 @@ use DOMDocument, DOMXpath, VuFind\Config\Reader as ConfigReader; * @package Resolver_Drivers * @author Markus Fischer <info@flyingfischer.ch> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_link_resolver_driver Wiki + * @link http://vufind.org/wiki/vufind2:link_resolver_drivers Wiki */ class Ezb implements DriverInterface { diff --git a/module/VuFind/src/VuFind/Resolver/Driver/PluginFactory.php b/module/VuFind/src/VuFind/Resolver/Driver/PluginFactory.php index 1a7262d028f0a95b3fc1c12194ad446290fdd647..09065a34ededc1856127250faebdf78b011e598f 100644 --- a/module/VuFind/src/VuFind/Resolver/Driver/PluginFactory.php +++ b/module/VuFind/src/VuFind/Resolver/Driver/PluginFactory.php @@ -23,7 +23,7 @@ * @package Resolver_Drivers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:link_resolver_drivers Wiki */ namespace VuFind\Resolver\Driver; @@ -34,7 +34,7 @@ namespace VuFind\Resolver\Driver; * @package Resolver_Drivers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:link_resolver_drivers Wiki */ class PluginFactory extends \VuFind\ServiceManager\AbstractPluginFactory { diff --git a/module/VuFind/src/VuFind/Resolver/Driver/PluginManager.php b/module/VuFind/src/VuFind/Resolver/Driver/PluginManager.php index 2da97e8eb8e7aa635333e5fd962378db7e8f77be..0a7ec5953b51e3c3e03274cbdc8cfbef4790b403 100644 --- a/module/VuFind/src/VuFind/Resolver/Driver/PluginManager.php +++ b/module/VuFind/src/VuFind/Resolver/Driver/PluginManager.php @@ -23,7 +23,7 @@ * @package Resolver_Drivers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:link_resolver_drivers Wiki */ namespace VuFind\Resolver\Driver; @@ -34,7 +34,7 @@ namespace VuFind\Resolver\Driver; * @package Resolver_Drivers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:link_resolver_drivers Wiki */ class PluginManager extends \VuFind\ServiceManager\AbstractPluginManager { diff --git a/module/VuFind/src/VuFind/Resolver/Driver/Sfx.php b/module/VuFind/src/VuFind/Resolver/Driver/Sfx.php index 0ca9c00699af16ec5609a91c7f3b60962fda2f8e..62f4469deb438c47f056eea64b1af02af74095d2 100644 --- a/module/VuFind/src/VuFind/Resolver/Driver/Sfx.php +++ b/module/VuFind/src/VuFind/Resolver/Driver/Sfx.php @@ -26,7 +26,7 @@ * @package Resolver_Drivers * @author Graham Seaman <Graham.Seaman@rhul.ac.uk> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_link_resolver_driver Wiki + * @link http://vufind.org/wiki/vufind2:link_resolver_drivers Wiki */ namespace VuFind\Resolver\Driver; use VuFind\Config\Reader as ConfigReader; @@ -38,7 +38,7 @@ use VuFind\Config\Reader as ConfigReader; * @package Resolver_Drivers * @author Graham Seaman <Graham.Seaman@rhul.ac.uk> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_link_resolver_driver Wiki + * @link http://vufind.org/wiki/vufind2:link_resolver_drivers Wiki */ class Sfx implements DriverInterface { diff --git a/module/VuFind/src/VuFind/Resolver/Driver/Threesixtylink.php b/module/VuFind/src/VuFind/Resolver/Driver/Threesixtylink.php index 33e9bef1a5af4830bcf089af6494aa02b8ae4494..7395682dc3982292ac0053c9ef3ca5f44038146f 100644 --- a/module/VuFind/src/VuFind/Resolver/Driver/Threesixtylink.php +++ b/module/VuFind/src/VuFind/Resolver/Driver/Threesixtylink.php @@ -25,7 +25,7 @@ * @package Resolver_Drivers * @author Graham Seaman <Graham.Seaman@rhul.ac.uk> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_link_resolver_driver Wiki + * @link http://vufind.org/wiki/vufind2:link_resolver_drivers Wiki */ namespace VuFind\Resolver\Driver; use DOMDocument, DOMXpath, VuFind\Config\Reader as ConfigReader; @@ -37,7 +37,7 @@ use DOMDocument, DOMXpath, VuFind\Config\Reader as ConfigReader; * @package Resolver_Drivers * @author Graham Seaman <Graham.Seaman@rhul.ac.uk> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_link_resolver_driver Wiki + * @link http://vufind.org/wiki/vufind2:link_resolver_drivers Wiki */ class Threesixtylink implements DriverInterface { diff --git a/module/VuFind/src/VuFind/SMS/AbstractBase.php b/module/VuFind/src/VuFind/SMS/AbstractBase.php index 984f9d6edfdf22b350d7d1ca3646cd3c3cb4c213..373b74949a6e989a06195971448c6c95020524b2 100644 --- a/module/VuFind/src/VuFind/SMS/AbstractBase.php +++ b/module/VuFind/src/VuFind/SMS/AbstractBase.php @@ -23,7 +23,7 @@ * @package SMS * @author Ronan McHugh <vufind-tech@lists.sourceforge.net> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\SMS; @@ -34,7 +34,7 @@ namespace VuFind\SMS; * @package SMS * @author Ronan McHugh <vufind-tech@lists.sourceforge.net> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ abstract class AbstractBase implements SMSInterface { diff --git a/module/VuFind/src/VuFind/SMS/Clickatell.php b/module/VuFind/src/VuFind/SMS/Clickatell.php index 7cc0db4852a69c11599c8341c30d62db61c2fe3e..875435e68f76a2b020fd7a3b0fd3a9c4e4af0649 100644 --- a/module/VuFind/src/VuFind/SMS/Clickatell.php +++ b/module/VuFind/src/VuFind/SMS/Clickatell.php @@ -23,7 +23,7 @@ * @package SMS * @author Ronan McHugh <vufind-tech@lists.sourceforge.net> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\SMS; use VuFind\Exception\Mail as MailException; @@ -35,7 +35,7 @@ use VuFind\Exception\Mail as MailException; * @package SMS * @author Ronan McHugh <vufind-tech@lists.sourceforge.net> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Clickatell extends AbstractBase { diff --git a/module/VuFind/src/VuFind/SMS/Factory.php b/module/VuFind/src/VuFind/SMS/Factory.php index fb78b65dd74220e4be18cc1128608f80e2c379eb..7fbbaf060333c6f166d78fdfae513529d5b376f9 100644 --- a/module/VuFind/src/VuFind/SMS/Factory.php +++ b/module/VuFind/src/VuFind/SMS/Factory.php @@ -23,7 +23,7 @@ * @package SMS * @author Ronan McHugh <vufind-tech@lists.sourceforge.net> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\SMS; use VuFind\Config\Reader as ConfigReader, @@ -36,7 +36,7 @@ use VuFind\Config\Reader as ConfigReader, * @package SMS * @author Ronan McHugh <vufind-tech@lists.sourceforge.net> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Factory implements \Zend\ServiceManager\FactoryInterface { diff --git a/module/VuFind/src/VuFind/SMS/Mailer.php b/module/VuFind/src/VuFind/SMS/Mailer.php index 5cff33f43a2fb2a88903ea79788ac7841350096f..22222a978beafaaed2a29fe40c5f69197c60681d 100644 --- a/module/VuFind/src/VuFind/SMS/Mailer.php +++ b/module/VuFind/src/VuFind/SMS/Mailer.php @@ -23,7 +23,7 @@ * @package SMS * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\SMS; @@ -34,7 +34,7 @@ namespace VuFind\SMS; * @package SMS * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Mailer extends AbstractBase { diff --git a/module/VuFind/src/VuFind/SMS/SMSInterface.php b/module/VuFind/src/VuFind/SMS/SMSInterface.php index c15910d33914b8064906d5f76252d8bc1d56bbbe..b0cfe1795ef3e700caa710eb941184622b25bc58 100644 --- a/module/VuFind/src/VuFind/SMS/SMSInterface.php +++ b/module/VuFind/src/VuFind/SMS/SMSInterface.php @@ -23,7 +23,7 @@ * @package SMS * @author Ronan McHugh <vufind-tech@lists.sourceforge.net> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\SMS; @@ -34,7 +34,7 @@ namespace VuFind\SMS; * @package SMS * @author Ronan McHugh <vufind-tech@lists.sourceforge.net> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ interface SMSInterface { diff --git a/module/VuFind/src/VuFind/Search/Minified.php b/module/VuFind/src/VuFind/Search/Minified.php index f8e972f521911331c1d283d699039e30ae4da84f..72332ca6e8218232c2eb4339fcc067efe15633c2 100644 --- a/module/VuFind/src/VuFind/Search/Minified.php +++ b/module/VuFind/src/VuFind/Search/Minified.php @@ -23,7 +23,7 @@ * @package Search * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\Search; @@ -48,7 +48,7 @@ namespace VuFind\Search; * @package Search * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_search_object Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Minified { diff --git a/module/VuFind/src/VuFind/Search/minSO.php b/module/VuFind/src/VuFind/Search/minSO.php index 9be5dbae0430e875c91f2c18d3f9d95a0264b960..1dfe02dfdd262bd74d97c81458b13dd6e2ffb561 100644 --- a/module/VuFind/src/VuFind/Search/minSO.php +++ b/module/VuFind/src/VuFind/Search/minSO.php @@ -23,7 +23,7 @@ * @package Search * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ /** diff --git a/module/VuFind/src/VuFind/ServiceManager/AbstractPluginFactory.php b/module/VuFind/src/VuFind/ServiceManager/AbstractPluginFactory.php index e4363d359f3cd477894b4ded59910047d0476191..838e0694f8a87d97b41fdf77c8e5d34b722361ac 100644 --- a/module/VuFind/src/VuFind/ServiceManager/AbstractPluginFactory.php +++ b/module/VuFind/src/VuFind/ServiceManager/AbstractPluginFactory.php @@ -23,7 +23,7 @@ * @package ServiceManager * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\ServiceManager; use Zend\ServiceManager\AbstractFactoryInterface, @@ -36,7 +36,7 @@ use Zend\ServiceManager\AbstractFactoryInterface, * @package ServiceManager * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_search_object Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ abstract class AbstractPluginFactory implements AbstractFactoryInterface { diff --git a/module/VuFind/src/VuFind/ServiceManager/AbstractPluginManager.php b/module/VuFind/src/VuFind/ServiceManager/AbstractPluginManager.php index 8ab59c121b3d4c997a8f9e799896a856a4131282..0fece6d1e53d68e0f76d06b5836927c0ea613737 100644 --- a/module/VuFind/src/VuFind/ServiceManager/AbstractPluginManager.php +++ b/module/VuFind/src/VuFind/ServiceManager/AbstractPluginManager.php @@ -23,7 +23,7 @@ * @package ServiceManager * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\ServiceManager; use Zend\ServiceManager\AbstractPluginManager as Base, @@ -36,7 +36,7 @@ use Zend\ServiceManager\AbstractPluginManager as Base, * @package ServiceManager * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_search_object Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ abstract class AbstractPluginManager extends Base { diff --git a/module/VuFind/src/VuFind/ServiceManager/Initializer.php b/module/VuFind/src/VuFind/ServiceManager/Initializer.php index 5d93a939a25c8cf1c7146c94dba4ba687928243a..62870e2ef73ac1e5ed8d3a04d72a6b5035068bee 100644 --- a/module/VuFind/src/VuFind/ServiceManager/Initializer.php +++ b/module/VuFind/src/VuFind/ServiceManager/Initializer.php @@ -23,7 +23,7 @@ * @package ServiceManager * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\ServiceManager; use Zend\ServiceManager\ServiceManager; @@ -35,7 +35,7 @@ use Zend\ServiceManager\ServiceManager; * @package ServiceManager * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_search_object Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Initializer { diff --git a/module/VuFind/src/VuFind/Session/AbstractBase.php b/module/VuFind/src/VuFind/Session/AbstractBase.php index 7c9dbf2d47028ebdc0c114814736241813c01535..1936ea0452d8f746023176adbbe82e8df27603eb 100644 --- a/module/VuFind/src/VuFind/Session/AbstractBase.php +++ b/module/VuFind/src/VuFind/Session/AbstractBase.php @@ -23,7 +23,7 @@ * @package Session_Handlers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:session_handlers Wiki */ namespace VuFind\Session; use Zend\ServiceManager\ServiceLocatorAwareInterface, @@ -37,7 +37,7 @@ use Zend\ServiceManager\ServiceLocatorAwareInterface, * @package Session_Handlers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:session_handlers Wiki */ abstract class AbstractBase implements SaveHandlerInterface, \VuFind\Db\Table\DbTableAwareInterface diff --git a/module/VuFind/src/VuFind/Session/Database.php b/module/VuFind/src/VuFind/Session/Database.php index 987c3e66a4b8a1cb9f55bcd90152801ebaa20fb6..a7321047ba1669f59c9a3307ed3739865926dd54 100644 --- a/module/VuFind/src/VuFind/Session/Database.php +++ b/module/VuFind/src/VuFind/Session/Database.php @@ -23,7 +23,7 @@ * @package Session_Handlers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:session_handlers Wiki */ namespace VuFind\Session; use VuFind\Exception\SessionExpired as SessionExpiredException; @@ -35,7 +35,7 @@ use VuFind\Exception\SessionExpired as SessionExpiredException; * @package Session_Handlers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:session_handlers Wiki */ class Database extends AbstractBase { diff --git a/module/VuFind/src/VuFind/Session/File.php b/module/VuFind/src/VuFind/Session/File.php index 2ddb7a3b1cb8529dfbf86fd80d72ee5708e15c4b..f8eb60cf64c75040de9e5ec5e9b7c43bca8da61d 100644 --- a/module/VuFind/src/VuFind/Session/File.php +++ b/module/VuFind/src/VuFind/Session/File.php @@ -23,7 +23,7 @@ * @package Session_Handlers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:session_handlers Wiki */ namespace VuFind\Session; @@ -34,7 +34,7 @@ namespace VuFind\Session; * @package Session_Handlers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:session_handlers Wiki */ class File extends AbstractBase { diff --git a/module/VuFind/src/VuFind/Session/Memcache.php b/module/VuFind/src/VuFind/Session/Memcache.php index 977f25b59a2711e8784020e9f9227686e442e0c6..d87212ed6277a9cfe29e6895e037848fc46fc9d1 100644 --- a/module/VuFind/src/VuFind/Session/Memcache.php +++ b/module/VuFind/src/VuFind/Session/Memcache.php @@ -26,7 +26,7 @@ * @package Session_Handlers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:session_handlers Wiki */ namespace VuFind\Session; @@ -37,7 +37,7 @@ namespace VuFind\Session; * @package Session_Handlers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:session_handlers Wiki */ class Memcache extends AbstractBase { diff --git a/module/VuFind/src/VuFind/Session/PluginFactory.php b/module/VuFind/src/VuFind/Session/PluginFactory.php index 8ac38a7dff5b0a646d835658bf93c2a446701d8c..a69a3cadfce5ec844a8a30f6fbeab2a35d204284 100644 --- a/module/VuFind/src/VuFind/Session/PluginFactory.php +++ b/module/VuFind/src/VuFind/Session/PluginFactory.php @@ -23,7 +23,7 @@ * @package Session_Handlers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:session_handlers Wiki */ namespace VuFind\Session; @@ -34,7 +34,7 @@ namespace VuFind\Session; * @package Session_Handlers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:session_handlers Wiki */ class PluginFactory extends \VuFind\ServiceManager\AbstractPluginFactory { diff --git a/module/VuFind/src/VuFind/Session/PluginManager.php b/module/VuFind/src/VuFind/Session/PluginManager.php index aafdbe5ba6c2956ba47b7fe74f66b6ca0b3ba423..2d8b048249ce806d4d26bb79a88833ec5962be3b 100644 --- a/module/VuFind/src/VuFind/Session/PluginManager.php +++ b/module/VuFind/src/VuFind/Session/PluginManager.php @@ -23,7 +23,7 @@ * @package Session_Handlers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:session_handlers Wiki */ namespace VuFind\Session; @@ -34,7 +34,7 @@ namespace VuFind\Session; * @package Session_Handlers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:session_handlers Wiki */ class PluginManager extends \VuFind\ServiceManager\AbstractPluginManager { diff --git a/module/VuFind/src/VuFind/SimpleXML.php b/module/VuFind/src/VuFind/SimpleXML.php index a3a8f6b85010f776dc8c867063b8a5ac46a36820..25271beee241322dbd93bba45bdd12b2b56b0cc4 100644 --- a/module/VuFind/src/VuFind/SimpleXML.php +++ b/module/VuFind/src/VuFind/SimpleXML.php @@ -23,7 +23,7 @@ * @package SimpleXML * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind; @@ -34,7 +34,7 @@ namespace VuFind; * @package SimpleXML * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class SimpleXML { diff --git a/module/VuFind/src/VuFind/Solr/Utils.php b/module/VuFind/src/VuFind/Solr/Utils.php index 09410e304e77c2366bbd01cbb2d97441e60a0840..275dbe7c6875bf3ef0fce3820a663404376d0657 100644 --- a/module/VuFind/src/VuFind/Solr/Utils.php +++ b/module/VuFind/src/VuFind/Solr/Utils.php @@ -23,7 +23,7 @@ * @package Solr * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\Solr; @@ -38,7 +38,7 @@ namespace VuFind\Solr; * @package Solr * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Utils { diff --git a/module/VuFind/src/VuFind/Statistics/Driver/PluginFactory.php b/module/VuFind/src/VuFind/Statistics/Driver/PluginFactory.php index db1a36e2cae97307b555ee47d9f192e9f316ca10..6abe37b2ea15ef2a0e43d2b480b951354c024b38 100644 --- a/module/VuFind/src/VuFind/Statistics/Driver/PluginFactory.php +++ b/module/VuFind/src/VuFind/Statistics/Driver/PluginFactory.php @@ -23,7 +23,7 @@ * @package Statistics * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:statistics_drivers Wiki */ namespace VuFind\Statistics\Driver; @@ -34,7 +34,7 @@ namespace VuFind\Statistics\Driver; * @package Statistics * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:statistics_drivers Wiki */ class PluginFactory extends \VuFind\ServiceManager\AbstractPluginFactory { diff --git a/module/VuFind/src/VuFind/Statistics/Driver/PluginManager.php b/module/VuFind/src/VuFind/Statistics/Driver/PluginManager.php index 853b3ddec041e0fd0b0cbf1d13271a6a58dea374..1cb9f6ff83dcc44b26432f905dbf460bda6e4cb8 100644 --- a/module/VuFind/src/VuFind/Statistics/Driver/PluginManager.php +++ b/module/VuFind/src/VuFind/Statistics/Driver/PluginManager.php @@ -23,7 +23,7 @@ * @package Statistics * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:statistics_drivers Wiki */ namespace VuFind\Statistics\Driver; @@ -34,7 +34,7 @@ namespace VuFind\Statistics\Driver; * @package Statistics * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/creating_a_session_handler Wiki + * @link http://vufind.org/wiki/vufind2:statistics_drivers Wiki */ class PluginManager extends \VuFind\ServiceManager\AbstractPluginManager { diff --git a/module/VuFind/src/VuFind/Statistics/Record.php b/module/VuFind/src/VuFind/Statistics/Record.php index 72674be443306a5414eb7adad510eb06507d7eba..cd82b6173f82c3b13ecd3d63f4c94eaa7564dda5 100644 --- a/module/VuFind/src/VuFind/Statistics/Record.php +++ b/module/VuFind/src/VuFind/Statistics/Record.php @@ -23,7 +23,7 @@ * @package Statistics * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\Statistics; @@ -34,7 +34,7 @@ namespace VuFind\Statistics; * @package Statistics * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Record extends AbstractBase { diff --git a/module/VuFind/src/VuFind/Statistics/Search.php b/module/VuFind/src/VuFind/Statistics/Search.php index 596ef67ff99e68fe74ba715edd45eec59012d5cf..cb42bcfab5b9eaa7247ad6c24c1f13fe2f713bdb 100644 --- a/module/VuFind/src/VuFind/Statistics/Search.php +++ b/module/VuFind/src/VuFind/Statistics/Search.php @@ -23,7 +23,7 @@ * @package Statistics * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\Statistics; @@ -34,7 +34,7 @@ namespace VuFind\Statistics; * @package Statistics * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Search extends AbstractBase { diff --git a/module/VuFind/src/VuFind/View/Helper/Blueprint/LayoutClass.php b/module/VuFind/src/VuFind/View/Helper/Blueprint/LayoutClass.php index 4fbabf436223bd7346c68e74920d27157c680a2b..b4bd04c7e885c2a08f29882a60af44974beed996 100644 --- a/module/VuFind/src/VuFind/View/Helper/Blueprint/LayoutClass.php +++ b/module/VuFind/src/VuFind/View/Helper/Blueprint/LayoutClass.php @@ -24,7 +24,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\View\Helper\Blueprint; use VuFind\Config\Reader as ConfigReader, Zend\View\Helper\AbstractHelper; @@ -37,7 +37,7 @@ use VuFind\Config\Reader as ConfigReader, Zend\View\Helper\AbstractHelper; * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class LayoutClass extends AbstractHelper { diff --git a/module/VuFind/src/VuFind/View/Helper/Blueprint/Search.php b/module/VuFind/src/VuFind/View/Helper/Blueprint/Search.php index 80186d4bcd54a820be78203b25df7059a668abca..bccf117fd4d9ba2edb1d904700e31f29036a4bc0 100644 --- a/module/VuFind/src/VuFind/View/Helper/Blueprint/Search.php +++ b/module/VuFind/src/VuFind/View/Helper/Blueprint/Search.php @@ -23,7 +23,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\View\Helper\Blueprint; use Zend\View\Helper\AbstractHelper; @@ -35,7 +35,7 @@ use Zend\View\Helper\AbstractHelper; * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/system_classes Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Search extends AbstractHelper { diff --git a/module/VuFind/src/VuFind/View/Helper/Root/AbstractSyndetics.php b/module/VuFind/src/VuFind/View/Helper/Root/AbstractSyndetics.php index 21a0c6071c33b1929d76d0c3f4593aa77797ba8f..093ef97468edcbfd67b40fcde35642b7384001f0 100644 --- a/module/VuFind/src/VuFind/View/Helper/Root/AbstractSyndetics.php +++ b/module/VuFind/src/VuFind/View/Helper/Root/AbstractSyndetics.php @@ -23,7 +23,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\View\Helper\Root; use Zend\View\Helper\AbstractHelper; @@ -35,7 +35,7 @@ use Zend\View\Helper\AbstractHelper; * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ abstract class AbstractSyndetics extends AbstractHelper implements \VuFindHttp\HttpServiceAwareInterface diff --git a/module/VuFind/src/VuFind/View/Helper/Root/Auth.php b/module/VuFind/src/VuFind/View/Helper/Root/Auth.php index 85d569007bc0becda0ec6f30a76bd496bbf50fd6..ff3e397aa1445aaf8d7644f4bdaacf8b320993c1 100644 --- a/module/VuFind/src/VuFind/View/Helper/Root/Auth.php +++ b/module/VuFind/src/VuFind/View/Helper/Root/Auth.php @@ -23,7 +23,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\View\Helper\Root; use Zend\View\Exception\RuntimeException; @@ -35,7 +35,7 @@ use Zend\View\Exception\RuntimeException; * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Auth extends \Zend\View\Helper\AbstractHelper { diff --git a/module/VuFind/src/VuFind/View/Helper/Root/AuthorNotes.php b/module/VuFind/src/VuFind/View/Helper/Root/AuthorNotes.php index dc3025011d29f79533f715451b156e73d76106fd..3d35e0bca47372f7b8f97aa8b0bb8ec7582d6087 100644 --- a/module/VuFind/src/VuFind/View/Helper/Root/AuthorNotes.php +++ b/module/VuFind/src/VuFind/View/Helper/Root/AuthorNotes.php @@ -23,7 +23,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\View\Helper\Root; use DOMDocument; @@ -35,7 +35,7 @@ use DOMDocument; * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class AuthorNotes extends AbstractSyndetics { diff --git a/module/VuFind/src/VuFind/View/Helper/Root/Browse.php b/module/VuFind/src/VuFind/View/Helper/Root/Browse.php index 8e0f2c7edffa0a5b3a02d215ba89ed7fb8d04902..185077c1e41f9d9fd16d446371fa983a4ef4bbfb 100644 --- a/module/VuFind/src/VuFind/View/Helper/Root/Browse.php +++ b/module/VuFind/src/VuFind/View/Helper/Root/Browse.php @@ -23,7 +23,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\View\Helper\Root; use Zend\View\Helper\AbstractHelper; @@ -35,7 +35,7 @@ use Zend\View\Helper\AbstractHelper; * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Browse extends AbstractHelper { diff --git a/module/VuFind/src/VuFind/View/Helper/Root/Cart.php b/module/VuFind/src/VuFind/View/Helper/Root/Cart.php index 6aca9f509350c092b0875209c70f3be65d24ee91..78325ff52113ef84f8748c768431a6fea07c9dd9 100644 --- a/module/VuFind/src/VuFind/View/Helper/Root/Cart.php +++ b/module/VuFind/src/VuFind/View/Helper/Root/Cart.php @@ -23,7 +23,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\View\Helper\Root; @@ -34,7 +34,7 @@ namespace VuFind\View\Helper\Root; * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Cart extends \Zend\View\Helper\AbstractHelper { diff --git a/module/VuFind/src/VuFind/View/Helper/Root/Citation.php b/module/VuFind/src/VuFind/View/Helper/Root/Citation.php index 02743c432fe7a67e536030b830d6fe32572d6f54..9571421ce52335e0f08d8cdc921002760ac1bd01 100644 --- a/module/VuFind/src/VuFind/View/Helper/Root/Citation.php +++ b/module/VuFind/src/VuFind/View/Helper/Root/Citation.php @@ -23,7 +23,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\View\Helper\Root; use VuFind\Date\Converter as DateConverter, VuFind\Exception\Date as DateException, @@ -36,7 +36,7 @@ use VuFind\Date\Converter as DateConverter, VuFind\Exception\Date as DateExcepti * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Citation extends AbstractHelper { diff --git a/module/VuFind/src/VuFind/View/Helper/Root/Context.php b/module/VuFind/src/VuFind/View/Helper/Root/Context.php index 87a7aac802c7d884c07bdcd34482381316e32840..a166189040fbde7e3fb807ae0d6f14bb5e3bfea0 100644 --- a/module/VuFind/src/VuFind/View/Helper/Root/Context.php +++ b/module/VuFind/src/VuFind/View/Helper/Root/Context.php @@ -25,7 +25,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\View\Helper\Root; use Zend\View\Helper\AbstractHelper, Zend\View\Renderer\RendererInterface; @@ -39,7 +39,7 @@ use Zend\View\Helper\AbstractHelper, Zend\View\Renderer\RendererInterface; * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Context extends AbstractHelper { diff --git a/module/VuFind/src/VuFind/View/Helper/Root/CurrentPath.php b/module/VuFind/src/VuFind/View/Helper/Root/CurrentPath.php index 6d0698576505146ff3254f19e3c2f3cb45f6a3f2..0783800ecd2ec7054ef757b88ca86b1e5dfbed85 100644 --- a/module/VuFind/src/VuFind/View/Helper/Root/CurrentPath.php +++ b/module/VuFind/src/VuFind/View/Helper/Root/CurrentPath.php @@ -23,7 +23,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\View\Helper\Root; use Zend\View\Helper\AbstractHelper; @@ -35,7 +35,7 @@ use Zend\View\Helper\AbstractHelper; * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class CurrentPath extends AbstractHelper { diff --git a/module/VuFind/src/VuFind/View/Helper/Root/DateTime.php b/module/VuFind/src/VuFind/View/Helper/Root/DateTime.php index 5fe04d40e0136c7c83471ccd9b80d7e7ec557e55..a27e93ec9fb6f9277defd0c67096c2d361b7c070 100644 --- a/module/VuFind/src/VuFind/View/Helper/Root/DateTime.php +++ b/module/VuFind/src/VuFind/View/Helper/Root/DateTime.php @@ -23,7 +23,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\View\Helper\Root; use VuFind\Date\Converter as DateConverter, Zend\View\Helper\AbstractHelper; @@ -35,7 +35,7 @@ use VuFind\Date\Converter as DateConverter, Zend\View\Helper\AbstractHelper; * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class DateTime extends AbstractHelper { diff --git a/module/VuFind/src/VuFind/View/Helper/Root/DisplayLanguageOption.php b/module/VuFind/src/VuFind/View/Helper/Root/DisplayLanguageOption.php index 6d6278296bfe48ebaec82ca004d3a205b3091c26..5bfa333c695e68b39c90deae8576712959da49bd 100644 --- a/module/VuFind/src/VuFind/View/Helper/Root/DisplayLanguageOption.php +++ b/module/VuFind/src/VuFind/View/Helper/Root/DisplayLanguageOption.php @@ -23,7 +23,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\View\Helper\Root; @@ -34,7 +34,7 @@ namespace VuFind\View\Helper\Root; * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class DisplayLanguageOption extends \Zend\View\Helper\AbstractHelper { diff --git a/module/VuFind/src/VuFind/View/Helper/Root/Excerpt.php b/module/VuFind/src/VuFind/View/Helper/Root/Excerpt.php index 5ab5862148028ba181e1e3bed28d901713ea25ed..412e4bfe6eae90b7bf709af96d6a56da966fbc6c 100644 --- a/module/VuFind/src/VuFind/View/Helper/Root/Excerpt.php +++ b/module/VuFind/src/VuFind/View/Helper/Root/Excerpt.php @@ -23,7 +23,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\View\Helper\Root; use DOMDocument; @@ -35,7 +35,7 @@ use DOMDocument; * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Excerpt extends AbstractSyndetics { diff --git a/module/VuFind/src/VuFind/View/Helper/Root/Flashmessages.php b/module/VuFind/src/VuFind/View/Helper/Root/Flashmessages.php index e3a9c1751a06cddb1914fc5bc975ab5da096e2a8..75e7f5fab9ed830c908f9545fae1d186203b2507 100644 --- a/module/VuFind/src/VuFind/View/Helper/Root/Flashmessages.php +++ b/module/VuFind/src/VuFind/View/Helper/Root/Flashmessages.php @@ -23,7 +23,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\View\Helper\Root; use Zend\View\Helper\AbstractHelper; @@ -35,7 +35,7 @@ use Zend\View\Helper\AbstractHelper; * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Flashmessages extends AbstractHelper { diff --git a/module/VuFind/src/VuFind/View/Helper/Root/GetLastSearchLink.php b/module/VuFind/src/VuFind/View/Helper/Root/GetLastSearchLink.php index 9a78eb8425c0dec3749784b634d397d0fc36411f..9295b6e241424ac6d650a97eee511770b4397cfd 100644 --- a/module/VuFind/src/VuFind/View/Helper/Root/GetLastSearchLink.php +++ b/module/VuFind/src/VuFind/View/Helper/Root/GetLastSearchLink.php @@ -23,7 +23,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\View\Helper\Root; use VuFind\Search\Memory, Zend\View\Helper\AbstractHelper; @@ -35,7 +35,7 @@ use VuFind\Search\Memory, Zend\View\Helper\AbstractHelper; * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class GetLastSearchLink extends AbstractHelper { diff --git a/module/VuFind/src/VuFind/View/Helper/Root/Highlight.php b/module/VuFind/src/VuFind/View/Helper/Root/Highlight.php index e1993afba231ba55d9d3f37dd8d2e313fbdbad96..e77f88d233f20dea910f93b15d158610e34b85b6 100644 --- a/module/VuFind/src/VuFind/View/Helper/Root/Highlight.php +++ b/module/VuFind/src/VuFind/View/Helper/Root/Highlight.php @@ -23,7 +23,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\View\Helper\Root; use Zend\View\Helper\AbstractHelper; @@ -35,7 +35,7 @@ use Zend\View\Helper\AbstractHelper; * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Highlight extends AbstractHelper { diff --git a/module/VuFind/src/VuFind/View/Helper/Root/Ils.php b/module/VuFind/src/VuFind/View/Helper/Root/Ils.php index 7b9178304458085e6e89b758c9a9d08270796a09..76fe14eeccad9ae722e26639ecf474868a113f80 100644 --- a/module/VuFind/src/VuFind/View/Helper/Root/Ils.php +++ b/module/VuFind/src/VuFind/View/Helper/Root/Ils.php @@ -23,7 +23,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\View\Helper\Root; @@ -34,7 +34,7 @@ namespace VuFind\View\Helper\Root; * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Ils extends \Zend\View\Helper\AbstractHelper { diff --git a/module/VuFind/src/VuFind/View/Helper/Root/OpenUrl.php b/module/VuFind/src/VuFind/View/Helper/Root/OpenUrl.php index b9c80ed0042f8a926756e354d0ba1b188af69cc5..1e6a3d7b98a97a7f7e6d26cc0a0a82f373640cba 100644 --- a/module/VuFind/src/VuFind/View/Helper/Root/OpenUrl.php +++ b/module/VuFind/src/VuFind/View/Helper/Root/OpenUrl.php @@ -23,7 +23,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\View\Helper\Root; use VuFind\Config\Reader as ConfigReader, Zend\View\Helper\AbstractHelper; @@ -35,7 +35,7 @@ use VuFind\Config\Reader as ConfigReader, Zend\View\Helper\AbstractHelper; * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class OpenUrl extends AbstractHelper { diff --git a/module/VuFind/src/VuFind/View/Helper/Root/Printms.php b/module/VuFind/src/VuFind/View/Helper/Root/Printms.php index 820b40ddb3be4e4504dc6b331b8baf4bcaed4576..073d5e3b141af936846b1ea6046409557901be98 100644 --- a/module/VuFind/src/VuFind/View/Helper/Root/Printms.php +++ b/module/VuFind/src/VuFind/View/Helper/Root/Printms.php @@ -23,7 +23,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\View\Helper\Root; use Zend\View\Helper\AbstractHelper; @@ -35,7 +35,7 @@ use Zend\View\Helper\AbstractHelper; * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Printms extends AbstractHelper { diff --git a/module/VuFind/src/VuFind/View/Helper/Root/ProxyUrl.php b/module/VuFind/src/VuFind/View/Helper/Root/ProxyUrl.php index 48b87629fb5f8a6312ce5663276225fe645826cb..a5512e38cadc512d567157d510304b913a9f90e1 100644 --- a/module/VuFind/src/VuFind/View/Helper/Root/ProxyUrl.php +++ b/module/VuFind/src/VuFind/View/Helper/Root/ProxyUrl.php @@ -23,7 +23,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\View\Helper\Root; use VuFind\Config\Reader as ConfigReader, Zend\View\Helper\AbstractHelper; @@ -35,7 +35,7 @@ use VuFind\Config\Reader as ConfigReader, Zend\View\Helper\AbstractHelper; * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class ProxyUrl extends AbstractHelper { diff --git a/module/VuFind/src/VuFind/View/Helper/Root/Recommend.php b/module/VuFind/src/VuFind/View/Helper/Root/Recommend.php index 3242aad1031700d17e83fa0e542895c626071280..eec701c558bc42323ec200c0df0a17684f73a59e 100644 --- a/module/VuFind/src/VuFind/View/Helper/Root/Recommend.php +++ b/module/VuFind/src/VuFind/View/Helper/Root/Recommend.php @@ -23,7 +23,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\View\Helper\Root; use Zend\View\Exception\RuntimeException, Zend\View\Helper\AbstractHelper; @@ -35,7 +35,7 @@ use Zend\View\Exception\RuntimeException, Zend\View\Helper\AbstractHelper; * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Recommend extends AbstractHelper { diff --git a/module/VuFind/src/VuFind/View/Helper/Root/Record.php b/module/VuFind/src/VuFind/View/Helper/Root/Record.php index 0efe8fc5b58f72abd3660fa8294b9e331530fbec..2d1f2d4cba499dbe882a78e5001ff67578c66bf8 100644 --- a/module/VuFind/src/VuFind/View/Helper/Root/Record.php +++ b/module/VuFind/src/VuFind/View/Helper/Root/Record.php @@ -23,7 +23,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\View\Helper\Root; use VuFind\Config\Reader as ConfigReader, Zend\View\Exception\RuntimeException, @@ -36,7 +36,7 @@ use VuFind\Config\Reader as ConfigReader, Zend\View\Exception\RuntimeException, * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Record extends AbstractHelper { diff --git a/module/VuFind/src/VuFind/View/Helper/Root/RecordLink.php b/module/VuFind/src/VuFind/View/Helper/Root/RecordLink.php index 588700153973ae56c8cb788cb16d7c4d28763fda..c01d06c0ac1b9ace03616be4b85b3d3520e1319a 100644 --- a/module/VuFind/src/VuFind/View/Helper/Root/RecordLink.php +++ b/module/VuFind/src/VuFind/View/Helper/Root/RecordLink.php @@ -23,7 +23,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\View\Helper\Root; @@ -34,7 +34,7 @@ namespace VuFind\View\Helper\Root; * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class RecordLink extends \Zend\View\Helper\AbstractHelper { diff --git a/module/VuFind/src/VuFind/View/Helper/Root/Related.php b/module/VuFind/src/VuFind/View/Helper/Root/Related.php index 2bd301ec8931a05aa74f7499936f54e44cf29688..e18e843decbe7190c63d8a0c532dcc89c320e561 100644 --- a/module/VuFind/src/VuFind/View/Helper/Root/Related.php +++ b/module/VuFind/src/VuFind/View/Helper/Root/Related.php @@ -23,7 +23,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\View\Helper\Root; use Zend\View\Exception\RuntimeException, Zend\View\Helper\AbstractHelper; @@ -35,7 +35,7 @@ use Zend\View\Exception\RuntimeException, Zend\View\Helper\AbstractHelper; * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Related extends AbstractHelper { diff --git a/module/VuFind/src/VuFind/View/Helper/Root/RenderArray.php b/module/VuFind/src/VuFind/View/Helper/Root/RenderArray.php index b159ce7ccef2f0ff08592e295db506bebc955355..dac03ea5c887208f40d084abac2641e65c52a876 100644 --- a/module/VuFind/src/VuFind/View/Helper/Root/RenderArray.php +++ b/module/VuFind/src/VuFind/View/Helper/Root/RenderArray.php @@ -23,7 +23,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\View\Helper\Root; use Zend\View\Helper\AbstractHelper; @@ -35,7 +35,7 @@ use Zend\View\Helper\AbstractHelper; * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class RenderArray extends AbstractHelper { diff --git a/module/VuFind/src/VuFind/View/Helper/Root/ResultFeed.php b/module/VuFind/src/VuFind/View/Helper/Root/ResultFeed.php index 7fd09c7fc690d299b2ea6941dbbe50d0851e3e54..f12a9e5043864ccea8aecb9318ef5f6d8f404823 100644 --- a/module/VuFind/src/VuFind/View/Helper/Root/ResultFeed.php +++ b/module/VuFind/src/VuFind/View/Helper/Root/ResultFeed.php @@ -23,7 +23,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\View\Helper\Root; use DateTime, Zend\Feed\Writer\Writer as FeedWriter, Zend\Feed\Writer\Feed, @@ -36,7 +36,7 @@ use DateTime, Zend\Feed\Writer\Writer as FeedWriter, Zend\Feed\Writer\Feed, * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class ResultFeed extends AbstractHelper { diff --git a/module/VuFind/src/VuFind/View/Helper/Root/Reviews.php b/module/VuFind/src/VuFind/View/Helper/Root/Reviews.php index 426b0281ebf57281cf82fd10b1c7327709351fb0..5d36d67217bdeef977235eda3131595ba34a6349 100644 --- a/module/VuFind/src/VuFind/View/Helper/Root/Reviews.php +++ b/module/VuFind/src/VuFind/View/Helper/Root/Reviews.php @@ -23,7 +23,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\View\Helper\Root; use DOMDocument, ZendService\Amazon\Amazon; @@ -35,7 +35,7 @@ use DOMDocument, ZendService\Amazon\Amazon; * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Reviews extends AbstractSyndetics { diff --git a/module/VuFind/src/VuFind/View/Helper/Root/SafeMoneyFormat.php b/module/VuFind/src/VuFind/View/Helper/Root/SafeMoneyFormat.php index dc4f19c0461724c831c71eae472695147fa84735..109da995ae8c59080a093f223635460980d0ad25 100644 --- a/module/VuFind/src/VuFind/View/Helper/Root/SafeMoneyFormat.php +++ b/module/VuFind/src/VuFind/View/Helper/Root/SafeMoneyFormat.php @@ -23,7 +23,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\View\Helper\Root; use Zend\View\Helper\AbstractHelper; @@ -35,7 +35,7 @@ use Zend\View\Helper\AbstractHelper; * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class SafeMoneyFormat extends AbstractHelper { diff --git a/module/VuFind/src/VuFind/View/Helper/Root/SearchOptions.php b/module/VuFind/src/VuFind/View/Helper/Root/SearchOptions.php index a10692c6b8f13d48430fcc98414ae5157d3ced3e..5111cdd49fa18dc963d575d48528044e2d66fcb9 100644 --- a/module/VuFind/src/VuFind/View/Helper/Root/SearchOptions.php +++ b/module/VuFind/src/VuFind/View/Helper/Root/SearchOptions.php @@ -23,7 +23,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\View\Helper\Root; @@ -34,7 +34,7 @@ namespace VuFind\View\Helper\Root; * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class SearchOptions extends \Zend\View\Helper\AbstractHelper { diff --git a/module/VuFind/src/VuFind/View/Helper/Root/SortFacetList.php b/module/VuFind/src/VuFind/View/Helper/Root/SortFacetList.php index 892c6d2991a5a042d3b9c5f69328c8e18a4c341d..fecd530aee094799dfdfe85b985105efcd544cfb 100644 --- a/module/VuFind/src/VuFind/View/Helper/Root/SortFacetList.php +++ b/module/VuFind/src/VuFind/View/Helper/Root/SortFacetList.php @@ -24,7 +24,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\View\Helper\Root; use Zend\View\Helper\AbstractHelper; @@ -36,7 +36,7 @@ use Zend\View\Helper\AbstractHelper; * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class SortFacetList extends AbstractHelper { diff --git a/module/VuFind/src/VuFind/View/Helper/Root/SystemEmail.php b/module/VuFind/src/VuFind/View/Helper/Root/SystemEmail.php index 69acab38a3f0a269edf03dcd745fe67b6e87cd8a..9c9082a10d7adb92a607eb7a1808bc243f9fdf56 100644 --- a/module/VuFind/src/VuFind/View/Helper/Root/SystemEmail.php +++ b/module/VuFind/src/VuFind/View/Helper/Root/SystemEmail.php @@ -23,7 +23,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\View\Helper\Root; use VuFind\Config\Reader as ConfigReader, Zend\View\Helper\AbstractHelper; @@ -35,7 +35,7 @@ use VuFind\Config\Reader as ConfigReader, Zend\View\Helper\AbstractHelper; * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class SystemEmail extends AbstractHelper { diff --git a/module/VuFind/src/VuFind/View/Helper/Root/TransEsc.php b/module/VuFind/src/VuFind/View/Helper/Root/TransEsc.php index 86f14de189c5399d0cb10bfd64308fd5b3dc55c6..bee5e9ac479401523424b9f6b278594aad81563e 100644 --- a/module/VuFind/src/VuFind/View/Helper/Root/TransEsc.php +++ b/module/VuFind/src/VuFind/View/Helper/Root/TransEsc.php @@ -23,7 +23,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\View\Helper\Root; use Zend\View\Helper\AbstractHelper; @@ -35,7 +35,7 @@ use Zend\View\Helper\AbstractHelper; * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class TransEsc extends AbstractHelper { diff --git a/module/VuFind/src/VuFind/View/Helper/Root/Translate.php b/module/VuFind/src/VuFind/View/Helper/Root/Translate.php index ba1758411dfe6e686afb111d5e94530a2f63f142..fc67e39da7d2626bdd3b7c013026bf48358c12f7 100644 --- a/module/VuFind/src/VuFind/View/Helper/Root/Translate.php +++ b/module/VuFind/src/VuFind/View/Helper/Root/Translate.php @@ -23,7 +23,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\View\Helper\Root; use Zend\I18n\Exception\RuntimeException, @@ -36,7 +36,7 @@ use Zend\I18n\Exception\RuntimeException, * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Translate extends AbstractTranslatorHelper { diff --git a/module/VuFind/src/VuFind/View/Helper/Root/Truncate.php b/module/VuFind/src/VuFind/View/Helper/Root/Truncate.php index 6faada51fdbd7e6e22691d77b027f7476325f40e..db205fcff0ee7674260800853a205ec9b0b30d9c 100644 --- a/module/VuFind/src/VuFind/View/Helper/Root/Truncate.php +++ b/module/VuFind/src/VuFind/View/Helper/Root/Truncate.php @@ -23,7 +23,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\View\Helper\Root; use Zend\View\Helper\AbstractHelper; @@ -35,7 +35,7 @@ use Zend\View\Helper\AbstractHelper; * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class Truncate extends AbstractHelper { diff --git a/module/VuFind/src/VuFind/View/Helper/Root/UserList.php b/module/VuFind/src/VuFind/View/Helper/Root/UserList.php index 63c976c7604621658c7acc849da3d5d07901118c..1ffaa419b2096acd1bbd311de98be4ff3a1ecb3c 100644 --- a/module/VuFind/src/VuFind/View/Helper/Root/UserList.php +++ b/module/VuFind/src/VuFind/View/Helper/Root/UserList.php @@ -23,7 +23,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\View\Helper\Root; use VuFind\Db\Row\UserList as UserListRow, Zend\View\Helper\AbstractHelper; @@ -35,7 +35,7 @@ use VuFind\Db\Row\UserList as UserListRow, Zend\View\Helper\AbstractHelper; * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class UserList extends AbstractHelper { diff --git a/module/VuFind/src/VuFind/View/Helper/Root/VideoClips.php b/module/VuFind/src/VuFind/View/Helper/Root/VideoClips.php index 3abb9706d75ff3bb98b651d8df688079b2b5783c..2ab67a091a31262b6a76e2ee0afa740478c7b09a 100644 --- a/module/VuFind/src/VuFind/View/Helper/Root/VideoClips.php +++ b/module/VuFind/src/VuFind/View/Helper/Root/VideoClips.php @@ -23,7 +23,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\View\Helper\Root; use DOMDocument; @@ -35,7 +35,7 @@ use DOMDocument; * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class VideoClips extends AbstractSyndetics { diff --git a/module/VuFind/src/VuFind/View/Helper/jQueryMobile/MobileMenu.php b/module/VuFind/src/VuFind/View/Helper/jQueryMobile/MobileMenu.php index e44f9f24391ddf8adc2397cf59331e14824ffa49..943809c84f10d511200bea007cc868ca5641fe10 100644 --- a/module/VuFind/src/VuFind/View/Helper/jQueryMobile/MobileMenu.php +++ b/module/VuFind/src/VuFind/View/Helper/jQueryMobile/MobileMenu.php @@ -23,7 +23,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\View\Helper\jQueryMobile; use Zend\View\Helper\AbstractHelper; @@ -35,7 +35,7 @@ use Zend\View\Helper\AbstractHelper; * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class MobileMenu extends AbstractHelper { diff --git a/module/VuFind/src/VuFindTest/RecordDriver/TestHarness.php b/module/VuFind/src/VuFindTest/RecordDriver/TestHarness.php index aa24f6e02586617d174b6364233722694bc4a836..c4f655718b0519d163fac257677a2c09fa1a4243 100644 --- a/module/VuFind/src/VuFindTest/RecordDriver/TestHarness.php +++ b/module/VuFind/src/VuFindTest/RecordDriver/TestHarness.php @@ -23,7 +23,7 @@ * @package RecordDrivers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/other_than_marc Wiki + * @link http://vufind.org/wiki/vufind2:unit_tests Wiki */ namespace VuFindTest\RecordDriver; @@ -34,7 +34,7 @@ namespace VuFindTest\RecordDriver; * @package RecordDrivers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/other_than_marc Wiki + * @link http://vufind.org/wiki/vufind2:unit_tests Wiki */ class TestHarness extends \VuFind\RecordDriver\AbstractBase { diff --git a/module/VuFind/src/VuFindTest/Unit/DbTestCase.php b/module/VuFind/src/VuFindTest/Unit/DbTestCase.php index a05f9f3c5ec07470cec7eb7fdbd5e81a5f55b48c..b3a9a35769bbede9b21ce1f2136945e7752bc54d 100644 --- a/module/VuFind/src/VuFindTest/Unit/DbTestCase.php +++ b/module/VuFind/src/VuFindTest/Unit/DbTestCase.php @@ -24,7 +24,7 @@ * @package Tests * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/unit_tests Wiki + * @link http://vufind.org/wiki/vufind2:unit_tests Wiki */ namespace VuFindTest\Unit; @@ -35,7 +35,7 @@ namespace VuFindTest\Unit; * @package Tests * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/unit_tests Wiki + * @link http://vufind.org/wiki/vufind2:unit_tests Wiki */ abstract class DbTestCase extends TestCase diff --git a/module/VuFind/src/VuFindTest/Unit/TestCase.php b/module/VuFind/src/VuFindTest/Unit/TestCase.php index cfd32b8c1c012332b7f7305e9ed18bdd41e5c263..c7bc70dd657c547cfe3e656337761d4100ea68f5 100644 --- a/module/VuFind/src/VuFindTest/Unit/TestCase.php +++ b/module/VuFind/src/VuFindTest/Unit/TestCase.php @@ -24,7 +24,7 @@ * @package Tests * @author David Maus <maus@hab.de> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/unit_tests Wiki + * @link http://vufind.org/wiki/vufind2:unit_tests Wiki */ namespace VuFindTest\Unit; @@ -36,7 +36,7 @@ namespace VuFindTest\Unit; * @package Tests * @author David Maus <maus@hab.de> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/unit_tests Wiki + * @link http://vufind.org/wiki/vufind2:unit_tests Wiki */ abstract class TestCase extends \PHPUnit_Framework_TestCase diff --git a/module/VuFind/src/VuFindTest/Unit/ViewHelperTestCase.php b/module/VuFind/src/VuFindTest/Unit/ViewHelperTestCase.php index a98a3ee44d3f317d9bc9291632c7516900074dc2..86ab667f92216dbca5e9e7d6c1bed852745174df 100644 --- a/module/VuFind/src/VuFindTest/Unit/ViewHelperTestCase.php +++ b/module/VuFind/src/VuFindTest/Unit/ViewHelperTestCase.php @@ -24,7 +24,7 @@ * @package Tests * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/unit_tests Wiki + * @link http://vufind.org/wiki/vufind2:unit_tests Wiki */ namespace VuFindTest\Unit; @@ -35,7 +35,7 @@ namespace VuFindTest\Unit; * @package Tests * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/unit_tests Wiki + * @link http://vufind.org/wiki/vufind2:unit_tests Wiki */ abstract class ViewHelperTestCase extends TestCase diff --git a/module/VuFind/tests/integration-tests/src/Connection/SolrTest.php b/module/VuFind/tests/integration-tests/src/Connection/SolrTest.php index a7a609999b1a7199ad9e0ab3898b8e59415b2b1b..07bf2d07cd4bde98aca15d451e224886e279aea7 100644 --- a/module/VuFind/tests/integration-tests/src/Connection/SolrTest.php +++ b/module/VuFind/tests/integration-tests/src/Connection/SolrTest.php @@ -23,7 +23,7 @@ * @package Tests * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/unit_tests Wiki + * @link http://vufind.org/wiki/vufind2:unit_tests Wiki */ namespace VuFind\IntegrationTest\Connection; @@ -34,7 +34,7 @@ namespace VuFind\IntegrationTest\Connection; * @package Tests * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/unit_tests Wiki + * @link http://vufind.org/wiki/vufind2:unit_tests Wiki */ class SolrTest extends \VuFindTest\Unit\TestCase { diff --git a/module/VuFind/tests/integration-tests/src/View/Helper/Root/ResultFeedTest.php b/module/VuFind/tests/integration-tests/src/View/Helper/Root/ResultFeedTest.php index d441e0176454bfd77da6eaca3c588266427c0d03..0c4040d0bb56c0d608975fe7d505f0a661471afc 100644 --- a/module/VuFind/tests/integration-tests/src/View/Helper/Root/ResultFeedTest.php +++ b/module/VuFind/tests/integration-tests/src/View/Helper/Root/ResultFeedTest.php @@ -23,7 +23,7 @@ * @package Tests * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/unit_tests Wiki + * @link http://vufind.org/wiki/vufind2:unit_tests Wiki */ namespace VuFind\IntegrationTest\View\Helper\Root; use VuFind\View\Helper\Root\ResultFeed; @@ -35,7 +35,7 @@ use VuFind\View\Helper\Root\ResultFeed; * @package Tests * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/unit_tests Wiki + * @link http://vufind.org/wiki/vufind2:unit_tests Wiki */ class ResultFeedTest extends \VuFindTest\Unit\ViewHelperTestCase { diff --git a/module/VuFind/tests/unit-tests/src/Code/ISBNTest.php b/module/VuFind/tests/unit-tests/src/Code/ISBNTest.php index db0a2e59a30a195dbbdb622e95224110b7189507..22d0c3c56798cfa9197ffd26d3f8215c690db607 100644 --- a/module/VuFind/tests/unit-tests/src/Code/ISBNTest.php +++ b/module/VuFind/tests/unit-tests/src/Code/ISBNTest.php @@ -23,7 +23,7 @@ * @package Tests * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/unit_tests Wiki + * @link http://vufind.org/wiki/vufind2:unit_tests Wiki */ namespace VuFindTest\Code; use VuFind\Code\ISBN; @@ -36,7 +36,7 @@ use VuFind\Code\ISBN; * @author Demian Katz <demian.katz@villanova.edu> * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/unit_tests Wiki + * @link http://vufind.org/wiki/vufind2:unit_tests Wiki */ class ISBNTest extends \VuFindTest\Unit\TestCase { diff --git a/module/VuFind/tests/unit-tests/src/Config/Reader/CacheDecoratorTest.php b/module/VuFind/tests/unit-tests/src/Config/Reader/CacheDecoratorTest.php index 62ed0cddc126873f005a02696030c12c3caac020..2baa4ee121316d56981632fd5a99c99b1b8a6b1d 100644 --- a/module/VuFind/tests/unit-tests/src/Config/Reader/CacheDecoratorTest.php +++ b/module/VuFind/tests/unit-tests/src/Config/Reader/CacheDecoratorTest.php @@ -24,7 +24,7 @@ * @package Tests * @author David Maus <maus@hab.de> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/unit_tests Wiki + * @link http://vufind.org/wiki/vufind2:unit_tests Wiki */ namespace VuFindTest\Config\Reader; @@ -38,7 +38,7 @@ use VuFind\Config\Reader\CacheDecorator; * @package Tests * @author David Maus <maus@hab.de> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/unit_tests Wiki + * @link http://vufind.org/wiki/vufind2:unit_tests Wiki */ class CacheDecoratorTest extends \PHPUnit_Framework_TestCase { diff --git a/module/VuFind/tests/unit-tests/src/Config/ReaderTest.php b/module/VuFind/tests/unit-tests/src/Config/ReaderTest.php index 6475e3032fe14a1cdec7de4a4fc4f7778298edc9..9e078669e211bedbb2f8f45f078e05330419a71a 100644 --- a/module/VuFind/tests/unit-tests/src/Config/ReaderTest.php +++ b/module/VuFind/tests/unit-tests/src/Config/ReaderTest.php @@ -23,7 +23,7 @@ * @package Tests * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/unit_tests Wiki + * @link http://vufind.org/wiki/vufind2:unit_tests Wiki */ namespace VuFindTest\Config; use VuFind\Config\Reader; @@ -36,7 +36,7 @@ use VuFind\Config\Reader; * @author Demian Katz <demian.katz@villanova.edu> * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/unit_tests Wiki + * @link http://vufind.org/wiki/vufind2:unit_tests Wiki */ class ReaderTest extends \VuFindTest\Unit\TestCase { diff --git a/module/VuFind/tests/unit-tests/src/Config/SearchSpecsReaderTest.php b/module/VuFind/tests/unit-tests/src/Config/SearchSpecsReaderTest.php index 0f8a6f676385debf7a394747d3706dbb74f545eb..ce280f9f4939b76ee35b60fe9fb5864f07622614 100644 --- a/module/VuFind/tests/unit-tests/src/Config/SearchSpecsReaderTest.php +++ b/module/VuFind/tests/unit-tests/src/Config/SearchSpecsReaderTest.php @@ -23,7 +23,7 @@ * @package Tests * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/unit_tests Wiki + * @link http://vufind.org/wiki/vufind2:unit_tests Wiki */ namespace VuFindTest\Config; use VuFind\Config\SearchSpecsReader; @@ -36,7 +36,7 @@ use VuFind\Config\SearchSpecsReader; * @author Demian Katz <demian.katz@villanova.edu> * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/unit_tests Wiki + * @link http://vufind.org/wiki/vufind2:unit_tests Wiki */ class SearchSpecsReaderTest extends \VuFindTest\Unit\TestCase { diff --git a/module/VuFind/tests/unit-tests/src/Config/UpgradeTest.php b/module/VuFind/tests/unit-tests/src/Config/UpgradeTest.php index 57a7c56802a62fa072ee1a5d82d2c24cc641576d..618b14c049cb602d750490f25acfeafe6a719a78 100644 --- a/module/VuFind/tests/unit-tests/src/Config/UpgradeTest.php +++ b/module/VuFind/tests/unit-tests/src/Config/UpgradeTest.php @@ -23,7 +23,7 @@ * @package Tests * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/unit_tests Wiki + * @link http://vufind.org/wiki/vufind2:unit_tests Wiki */ namespace VuFindTest\Config; use VuFind\Config\Upgrade; @@ -36,7 +36,7 @@ use VuFind\Config\Upgrade; * @author Demian Katz <demian.katz@villanova.edu> * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/unit_tests Wiki + * @link http://vufind.org/wiki/vufind2:unit_tests Wiki */ class UpgradeTest extends \VuFindTest\Unit\TestCase { diff --git a/module/VuFind/tests/unit-tests/src/Cookie/ContainerTest.php b/module/VuFind/tests/unit-tests/src/Cookie/ContainerTest.php index 31e2775806098918ab369047fb5e625eaf676f5e..767b15e906482c55218ac79435b076308a40890f 100644 --- a/module/VuFind/tests/unit-tests/src/Cookie/ContainerTest.php +++ b/module/VuFind/tests/unit-tests/src/Cookie/ContainerTest.php @@ -23,7 +23,7 @@ * @package Tests * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/unit_tests Wiki + * @link http://vufind.org/wiki/vufind2:unit_tests Wiki */ namespace VuFindTest\Cookie; use VuFind\Cookie\Container; @@ -35,7 +35,7 @@ use VuFind\Cookie\Container; * @package Tests * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/unit_tests Wiki + * @link http://vufind.org/wiki/vufind2:unit_tests Wiki */ class ContainerTest extends \VuFindTest\Unit\TestCase { diff --git a/module/VuFind/tests/unit-tests/src/Db/Table/ChangeTrackerTest.php b/module/VuFind/tests/unit-tests/src/Db/Table/ChangeTrackerTest.php index e747f84c075db865ce2608124d2e3b6e621f0e28..cd82e34810b1433ad95c9cdebd30a01a383c662e 100644 --- a/module/VuFind/tests/unit-tests/src/Db/Table/ChangeTrackerTest.php +++ b/module/VuFind/tests/unit-tests/src/Db/Table/ChangeTrackerTest.php @@ -23,7 +23,7 @@ * @package Tests * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/unit_tests Wiki + * @link http://vufind.org/wiki/vufind2:unit_tests Wiki */ namespace VuFind\Test\Db\Table; use VuFind\Db\Table\ChangeTracker; @@ -35,7 +35,7 @@ use VuFind\Db\Table\ChangeTracker; * @package Tests * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/unit_tests Wiki + * @link http://vufind.org/wiki/vufind2:unit_tests Wiki */ class ChangeTrackerTest extends \VuFindTest\Unit\DbTestCase { diff --git a/module/VuFind/tests/unit-tests/src/Db/Table/UserListTest.php b/module/VuFind/tests/unit-tests/src/Db/Table/UserListTest.php index 56a68d50a9bd682062b75726e01f067086830953..878436386338966df1e2ae033ec4031f56db8c2c 100644 --- a/module/VuFind/tests/unit-tests/src/Db/Table/UserListTest.php +++ b/module/VuFind/tests/unit-tests/src/Db/Table/UserListTest.php @@ -23,7 +23,7 @@ * @package Tests * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/unit_tests Wiki + * @link http://vufind.org/wiki/vufind2:unit_tests Wiki */ namespace VuFind\Test\Db\Table; use VuFind\Db\Table\UserList; @@ -35,7 +35,7 @@ use VuFind\Db\Table\UserList; * @package Tests * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/unit_tests Wiki + * @link http://vufind.org/wiki/vufind2:unit_tests Wiki */ class UserListTest extends \VuFindTest\Unit\DbTestCase { diff --git a/module/VuFind/tests/unit-tests/src/RecordDriver/SolrMarcTest.php b/module/VuFind/tests/unit-tests/src/RecordDriver/SolrMarcTest.php index bbc2b9b4dc897315a2c87f190da82bd9d467abba..13dae887f21d16091ee0da166c7b5fb78f868680 100644 --- a/module/VuFind/tests/unit-tests/src/RecordDriver/SolrMarcTest.php +++ b/module/VuFind/tests/unit-tests/src/RecordDriver/SolrMarcTest.php @@ -24,7 +24,7 @@ * @author Demian Katz <demian.katz@villanova.edu> * @author Preetha Rao <vufind-tech@lists.sourceforge.net> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/unit_tests Wiki + * @link http://vufind.org/wiki/vufind2:unit_tests Wiki */ namespace VuFind\Test\RecordDriver; @@ -37,7 +37,7 @@ namespace VuFind\Test\RecordDriver; * @author David Maus <maus@hab.de> * @author Preetha Rao <vufind-tech@lists.sourceforge.net> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/unit_tests Wiki + * @link http://vufind.org/wiki/vufind2:unit_tests Wiki */ class SolrMarcTest extends \VuFindTest\Unit\TestCase { diff --git a/module/VuFind/tests/unit-tests/src/Search/Base/ParamsTest.php b/module/VuFind/tests/unit-tests/src/Search/Base/ParamsTest.php index 603a10fd7992935ba3ffc24ca7815ec4cfa3e72d..0b2171c9c1631c29be1b37d39a8de132f3c8e028 100644 --- a/module/VuFind/tests/unit-tests/src/Search/Base/ParamsTest.php +++ b/module/VuFind/tests/unit-tests/src/Search/Base/ParamsTest.php @@ -24,7 +24,7 @@ * @author Demian Katz <demian.katz@villanova.edu> * @author Preetha Rao <vufind-tech@lists.sourceforge.net> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/unit_tests Wiki + * @link http://vufind.org/wiki/vufind2:unit_tests Wiki */ namespace VuFindTest\Search\Base; @@ -36,7 +36,7 @@ namespace VuFindTest\Search\Base; * @author Demian Katz <demian.katz@villanova.edu> * @author Preetha Rao <vufind-tech@lists.sourceforge.net> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/unit_tests Wiki + * @link http://vufind.org/wiki/vufind2:unit_tests Wiki */ class ParamsTest extends \VuFindTest\Unit\TestCase { diff --git a/module/VuFind/tests/unit-tests/src/Solr/UtilsTest.php b/module/VuFind/tests/unit-tests/src/Solr/UtilsTest.php index d1c1e83a1bf74ab14b2a73558dd9d9b583400e85..53659e6c136348eaf7aa1c080c599d106de917d2 100644 --- a/module/VuFind/tests/unit-tests/src/Solr/UtilsTest.php +++ b/module/VuFind/tests/unit-tests/src/Solr/UtilsTest.php @@ -23,7 +23,7 @@ * @package Tests * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/unit_tests Wiki + * @link http://vufind.org/wiki/vufind2:unit_tests Wiki */ namespace VuFindTest\Solr; use VuFind\Solr\Utils; @@ -35,7 +35,7 @@ use VuFind\Solr\Utils; * @package Tests * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/unit_tests Wiki + * @link http://vufind.org/wiki/vufind2:unit_tests Wiki */ class UtilsTest extends \VuFindTest\Unit\TestCase { diff --git a/module/VuFind/tests/unit-tests/src/View/Helper/Root/CitationTest.php b/module/VuFind/tests/unit-tests/src/View/Helper/Root/CitationTest.php index 5ee9a9bfc690ba760b2488d639e0057522f37ec3..78f901918ce1c383a3142804844aca1826100357 100644 --- a/module/VuFind/tests/unit-tests/src/View/Helper/Root/CitationTest.php +++ b/module/VuFind/tests/unit-tests/src/View/Helper/Root/CitationTest.php @@ -23,7 +23,7 @@ * @package Tests * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/unit_tests Wiki + * @link http://vufind.org/wiki/vufind2:unit_tests Wiki */ namespace VuFind\Test\View\Helper\Root; use VuFind\View\Helper\Root\Citation; @@ -35,7 +35,7 @@ use VuFind\View\Helper\Root\Citation; * @package Tests * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/unit_tests Wiki + * @link http://vufind.org/wiki/vufind2:unit_tests Wiki */ class CitationTest extends \VuFindTest\Unit\ViewHelperTestCase { diff --git a/module/VuFindConsole/src/VuFindConsole/Controller/AbstractBase.php b/module/VuFindConsole/src/VuFindConsole/Controller/AbstractBase.php index 875cb9366cf29f926731248c3d703412f1c60f2d..824ce536028e7276da6151a6ea317e4839ceaab9 100644 --- a/module/VuFindConsole/src/VuFindConsole/Controller/AbstractBase.php +++ b/module/VuFindConsole/src/VuFindConsole/Controller/AbstractBase.php @@ -24,7 +24,7 @@ * @package Controller * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:building_a_controller Wiki */ namespace VuFindConsole\Controller; use Zend\Console\Console, Zend\Console\Getopt, @@ -38,7 +38,7 @@ use Zend\Console\Console, Zend\Console\Getopt, * @package Controller * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:building_a_controller Wiki */ class AbstractBase extends AbstractActionController { diff --git a/module/VuFindConsole/src/VuFindConsole/Controller/HarvestController.php b/module/VuFindConsole/src/VuFindConsole/Controller/HarvestController.php index 9e38d721cbad2e0e9aa8ba8b0b0302064c52008f..726ae73cdd7888e6614cd84ecf6a9bf66e3e7cdb 100644 --- a/module/VuFindConsole/src/VuFindConsole/Controller/HarvestController.php +++ b/module/VuFindConsole/src/VuFindConsole/Controller/HarvestController.php @@ -23,7 +23,7 @@ * @package Controller * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:building_a_controller Wiki */ namespace VuFindConsole\Controller; use VuFind\Config\Reader as ConfigReader, VuFind\Harvester\NAF, VuFind\Harvester\OAI, @@ -36,7 +36,7 @@ use VuFind\Config\Reader as ConfigReader, VuFind\Harvester\NAF, VuFind\Harvester * @package Controller * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:building_a_controller Wiki */ class HarvestController extends AbstractBase { diff --git a/module/VuFindConsole/src/VuFindConsole/Controller/ImportController.php b/module/VuFindConsole/src/VuFindConsole/Controller/ImportController.php index 829dc25716ac1f8e3d1d9a6e18022ec5887630f0..82f6580707e86d04e611ee1250f62130b74b8c28 100644 --- a/module/VuFindConsole/src/VuFindConsole/Controller/ImportController.php +++ b/module/VuFindConsole/src/VuFindConsole/Controller/ImportController.php @@ -23,7 +23,7 @@ * @package Controller * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:building_a_controller Wiki */ namespace VuFindConsole\Controller; use VuFind\XSLT\Importer, Zend\Console\Console; @@ -35,7 +35,7 @@ use VuFind\XSLT\Importer, Zend\Console\Console; * @package Controller * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:building_a_controller Wiki */ class ImportController extends AbstractBase { diff --git a/module/VuFindConsole/src/VuFindConsole/Controller/UtilController.php b/module/VuFindConsole/src/VuFindConsole/Controller/UtilController.php index 33e64aa5673be59692f205d73022140e8a24a323..83db78b6a18b5f9587aeac41c07ea02a6ceb160f 100644 --- a/module/VuFindConsole/src/VuFindConsole/Controller/UtilController.php +++ b/module/VuFindConsole/src/VuFindConsole/Controller/UtilController.php @@ -23,7 +23,7 @@ * @package Controller * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:building_a_controller Wiki */ namespace VuFindConsole\Controller; use File_MARC, File_MARCXML, VuFind\Connection\Manager as ConnectionManager, @@ -36,7 +36,7 @@ use File_MARC, File_MARCXML, VuFind\Connection\Manager as ConnectionManager, * @package Controller * @author Chris Hallberg <challber@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:building_a_controller Wiki */ class UtilController extends AbstractBase { diff --git a/module/VuFindTheme/src/VuFindTheme/View/Helper/HeadLink.php b/module/VuFindTheme/src/VuFindTheme/View/Helper/HeadLink.php index 50e9f7c17ca2713df457c1d7f4a79907a91db53a..099ca65b914d867f78d883d2ff725864396d781f 100644 --- a/module/VuFindTheme/src/VuFindTheme/View/Helper/HeadLink.php +++ b/module/VuFindTheme/src/VuFindTheme/View/Helper/HeadLink.php @@ -23,7 +23,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFindTheme\View\Helper; @@ -34,7 +34,7 @@ namespace VuFindTheme\View\Helper; * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class HeadLink extends \Zend\View\Helper\HeadLink { diff --git a/module/VuFindTheme/src/VuFindTheme/View/Helper/HeadScript.php b/module/VuFindTheme/src/VuFindTheme/View/Helper/HeadScript.php index 5686af579894bcd66b1cd0c4e5ed7b67f4b448ea..b5d4e83f33e3c3b4436fa5374c745261f9fb83e6 100644 --- a/module/VuFindTheme/src/VuFindTheme/View/Helper/HeadScript.php +++ b/module/VuFindTheme/src/VuFindTheme/View/Helper/HeadScript.php @@ -23,7 +23,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFindTheme\View\Helper; @@ -34,7 +34,7 @@ namespace VuFindTheme\View\Helper; * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class HeadScript extends \Zend\View\Helper\HeadScript { diff --git a/module/VuFindTheme/src/VuFindTheme/View/Helper/HeadThemeResources.php b/module/VuFindTheme/src/VuFindTheme/View/Helper/HeadThemeResources.php index 76210ee577b1c3aa87e2b5b9964917093d029dc2..aefe2af46173d358e9de52fd3dffa39c16bcde1e 100644 --- a/module/VuFindTheme/src/VuFindTheme/View/Helper/HeadThemeResources.php +++ b/module/VuFindTheme/src/VuFindTheme/View/Helper/HeadThemeResources.php @@ -23,7 +23,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFindTheme\View\Helper; @@ -34,7 +34,7 @@ namespace VuFindTheme\View\Helper; * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class HeadThemeResources extends \Zend\View\Helper\AbstractHelper { diff --git a/module/VuFindTheme/src/VuFindTheme/View/Helper/MobileUrl.php b/module/VuFindTheme/src/VuFindTheme/View/Helper/MobileUrl.php index 884f64fec94e195ba4f1c2b7f72b5c80e33430f7..b89c8775c491a3828be8bedceb73f66e9e81d330 100644 --- a/module/VuFindTheme/src/VuFindTheme/View/Helper/MobileUrl.php +++ b/module/VuFindTheme/src/VuFindTheme/View/Helper/MobileUrl.php @@ -23,7 +23,7 @@ * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFindTheme\View\Helper; @@ -34,7 +34,7 @@ namespace VuFindTheme\View\Helper; * @package View_Helpers * @author Demian Katz <demian.katz@villanova.edu> * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License - * @link http://vufind.org/wiki/building_a_recommendations_module Wiki + * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ class MobileUrl extends \Zend\View\Helper\AbstractHelper { diff --git a/themes/blueprint/templates/upgrade/home.phtml b/themes/blueprint/templates/upgrade/home.phtml index 7672a6232444e770c44583d2a3a8ec363f474994..3c81d3feb7351ff2b3debe69a61445e135301b49 100644 --- a/themes/blueprint/templates/upgrade/home.phtml +++ b/themes/blueprint/templates/upgrade/home.phtml @@ -18,5 +18,5 @@ <li>You may want to check for problems on the <a href="<?=$this->url('install-home')?>"><?=$this->transEsc('auto_configure_title')?></a> page.</li> </ol> -<p>For the latest notes on upgrading, see the <a href="http://www.vufind.org/wiki/migration_notes">online documentation</a>.</p> +<p>For the latest notes on upgrading, see the <a href="http://vufind.org/wiki/vufind2:migration_notes">online documentation</a>.</p> <p>For help, feel free to use the mailing lists on the <a href="http://vufind.org/support.php">support page</a>.</p> \ No newline at end of file