[ 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
/
metadata
/
[
Home
]
File: CrosswalkFilter.inc.php
<?php /** * @file classes/metadata/CrosswalkFilter.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 CrosswalkFilter * @ingroup metadata * @see MetadataDescription * * @brief Class that provides methods to convert one type of * meta-data description into another. This is an abstract * class that must be sub-classed by specific cross-walk * implementations. */ import('lib.pkp.classes.filter.Filter'); class CrosswalkFilter extends Filter { /** * Constructor * @param $fromSchema string fully qualified class name of supported input meta-data schema * @param $toSchema string fully qualified class name of supported output meta-data schema */ function CrosswalkFilter($fromSchema, $toSchema) { parent::Filter('metadata::'.$fromSchema.'(*)', 'metadata::'.$toSchema.'(*)'); } } ?>