-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial Commit - ReviewAssignments Export
- Loading branch information
Showing
2 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
39 changes: 39 additions & 0 deletions
39
plugins/importexport/native/filter/ReviewAssignmentNativeXmlFilter.inc.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<?php | ||
|
||
/** | ||
* @file plugins/importexport/native/filter/AuthorNativeXmlFilter.inc.php | ||
* | ||
* Copyright (c) 2014-2018 Simon Fraser University | ||
* Copyright (c) 2000-2018 John Willinsky | ||
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING. | ||
* | ||
* @class AuthorNativeXmlFilter | ||
* @ingroup plugins_importexport_native | ||
* | ||
* @brief Class that converts a Author to a Native XML document. | ||
*/ | ||
|
||
import('lib.pkp.plugins.importexport.native.filter.PKPAuthorNativeXmlFilter'); | ||
|
||
class AuthorNativeXmlFilter extends PKPAuthorNativeXmlFilter { | ||
/** | ||
* Constructor | ||
* @param $filterGroup FilterGroup | ||
*/ | ||
function __construct($filterGroup) { | ||
parent::__construct($filterGroup); | ||
} | ||
|
||
|
||
// | ||
// Implement template methods from PersistableFilter | ||
// | ||
/** | ||
* @copydoc PersistableFilter::getClassName() | ||
*/ | ||
function getClassName() { | ||
return 'plugins.importexport.native.filter.AuthorNativeXmlFilter'; | ||
} | ||
} | ||
|
||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters