forked from ajnyga/returningAuthorScreening
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
710 additions
and
153 deletions.
There are no files selected for viewing
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,6 @@ | ||
# Returning Author Screening Plugin | ||
|
||
For OPS 3.2.0 or higher | ||
|
||
Rules: Authors can only publish if they have prior publications on the same server. | ||
|
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
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 |
---|---|---|
@@ -1,17 +1,17 @@ | ||
<?php | ||
/** | ||
* @defgroup plugins_generic_defaultScreening | ||
* @defgroup plugins_generic_returningAuthorScreening | ||
*/ | ||
/** | ||
* @file plugins/generic/defaultScreening/index.php | ||
* @file plugins/generic/returningAuthorScreening/index.php | ||
* | ||
* Copyright (c) 2014-2019 Simon Fraser University | ||
* Copyright (c) 2003-2019 John Willinsky | ||
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING. | ||
* Copyright (c) 2014-2020 Simon Fraser University | ||
* Copyright (c) 2003-2029 John Willinsky | ||
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. | ||
* | ||
* @ingroup plugins_generic_defaultScreening | ||
* @brief Wrapper for the Default Screening plugin. | ||
* @ingroup plugins_generic_returningAuthorScreening | ||
* @brief Wrapper for the Returning Author Screening plugin. | ||
* | ||
*/ | ||
require_once('DefaultScreeningPlugin.inc.php'); | ||
return new DefaultScreeningPlugin(); | ||
require_once('ReturningAuthorScreeningPlugin.inc.php'); | ||
return new ReturningAuthorScreeningPlugin(); |
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 |
---|---|---|
@@ -1,15 +1,15 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE locale SYSTEM "../../../../../lib/pkp/dtd/locale.dtd"> | ||
<!-- | ||
* plugins/generic/defaultScreening/locale/en_US/locale.xml | ||
* plugins/generic/returningAuthorScreening/locale/en_US/locale.xml | ||
* | ||
* Copyright (c) 2017-2019 Simon Fraser University | ||
* Copyright (c) 2017-2019 John Willinsky | ||
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING. | ||
* Copyright (c) 2014-2020 Simon Fraser University | ||
* Copyright (c) 2017-2020 John Willinsky | ||
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. | ||
* Localization information: https://pkp.sfu.ca/wiki/index.php?title=Translating_OxS | ||
--> | ||
<locale name="en_US" full_name="U.S. English"> | ||
<message key="plugins.generic.defaultScreening.displayName">Default Screening Plugin</message> | ||
<message key="plugins.generic.defaultScreening.description">Rules: Authors can only publish if they have prior publications on the same server.</message> | ||
<message key="plugins.generic.defaultScreening.required.publishedBefore">You need to have at least one published publication on this server.</message> | ||
<message key="plugins.generic.returningAuthorScreening.displayName">Returning Author Screening Plugin</message> | ||
<message key="plugins.generic.returningAuthorScreening.description">Rules: Authors can only publish if they have prior publications on the same server.</message> | ||
<message key="plugins.generic.returningAuthorScreening.required.publishedBefore">You need to have at least one published publication on this server.</message> | ||
</locale> |
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 |
---|---|---|
@@ -1,19 +1,19 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE version SYSTEM "../../../lib/pkp/dtd/pluginVersion.dtd"> | ||
<!-- | ||
* plugins/generic/defaultScreening/version.xml | ||
* plugins/generic/returningAuthorScreening/version.xml | ||
* | ||
* Copyright (c) 2017-2019 Simon Fraser University | ||
* Copyright (c) 2014-2020 Simon Fraser University | ||
* Copyright (c) 2017-2019 John Willinsky | ||
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING. | ||
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. | ||
* | ||
* Plugin version information. | ||
--> | ||
<version> | ||
<application>defaultScreening</application> | ||
<application>returningAuthorScreening</application> | ||
<type>plugins.generic</type> | ||
<release>1.0.0.0</release> | ||
<date>2019-11-01</date> | ||
<date>2020-03-10</date> | ||
<lazy-load>1</lazy-load> | ||
<class>DefaultScreeningPlugin</class> | ||
<class>ReturningAuthorScreeningPlugin</class> | ||
</version> |