-
Notifications
You must be signed in to change notification settings - Fork 921
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4527 from bozana/10620
pkp/pkp-lib#10620 introduce new Editorial Board Member assistant role
- Loading branch information
Showing
4 changed files
with
38 additions
and
1 deletion.
There are no files selected for viewing
33 changes: 33 additions & 0 deletions
33
classes/migration/upgrade/v3_5_0/I10620_EditorialBoardMemberRole.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,33 @@ | ||
<?php | ||
|
||
/** | ||
* @file classes/migration/upgrade/v3_5_0/I10620_EditorialBoardMemberRole.php | ||
* | ||
* Copyright (c) 2025 Simon Fraser University | ||
* Copyright (c) 2025 John Willinsky | ||
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. | ||
* | ||
* @class I10620_EditorialBoardMemberRole | ||
* | ||
* @brief Add new Editorial Board Member user group. | ||
*/ | ||
|
||
namespace APP\migration\upgrade\v3_5_0; | ||
|
||
class I10620_EditorialBoardMemberRole extends \PKP\migration\upgrade\v3_5_0\I10620_EditorialBoardMemberRole | ||
{ | ||
protected function getContextTable(): string | ||
{ | ||
return 'journals'; | ||
} | ||
|
||
protected function getContextSettingsTable(): string | ||
{ | ||
return 'journal_settings'; | ||
} | ||
|
||
protected function getContextIdColumn(): string | ||
{ | ||
return 'journal_id'; | ||
} | ||
} |
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
Submodule pkp
updated
3 files
+94 −0 | classes/migration/upgrade/v3_5_0/I10620_EditorialBoardMemberRole.php | |
+9 −0 | locale/en/default.po | |
+1 −1 | tests/classes/i18n/LocaleTest.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