[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
14082024
/
Data
/
htdocs
/
htdocs
/
ojs
/
248
/
lib
/
pkp
/
classes
/
codelist
/
[
Home
]
File: QualifierDAO.inc.php
<?php /** * @file classes/codelist/QualifierDAO.inc.php * * Copyright (c) 2013-2019 Simon Fraser University * Copyright (c) 2000-2019 John Willinsky * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING. * * @class QualifierDAO * @ingroup codelist * @see Qualifier * * @brief Operations for retrieving and modifying Subject Qualifier objects. * */ import('lib.pkp.classes.codelist.Qualifier'); import('lib.pkp.classes.codelist.CodelistItemDAO'); class QualifierDAO extends CodelistItemDAO { /** * Constructor. */ function QualifierDAO() { parent::CodelistItemDAO(); } /** * Get the filename of the qualifier database * @param $locale string * @return string */ function getFilename($locale) { if (!AppLocale::isLocaleValid($locale)) { $locale = AppLocale::MASTER_LOCALE; } return "lib/pkp/locale/$locale/bic21qualifiers.xml"; } /** * Get the base node name particular codelist database * This is also the node name in the XML. * @return string */ function getName() { return 'qualifier'; } /** * Get the name of the CodelistItem subclass. * @return String */ function newDataObject() { return new Qualifier(); } } ?>