Skip to content

Commit

Permalink
Continue adding documentation for implemented features and related im…
Browse files Browse the repository at this point in the history
…plementations
  • Loading branch information
abujeda committed Jul 3, 2024
1 parent a8f7924 commit 9e157fc
Show file tree
Hide file tree
Showing 13 changed files with 140 additions and 43 deletions.
159 changes: 119 additions & 40 deletions docs/Sphinx-guides/source/featureDescriptions.md

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions pprOjsPlugin/css/iqss.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ div.pkpPublication .pkpTabs__buttons #issue-button {
/**
PUBLICATION
HIDE ACTION BUTTONS
ISSUE 095
*/
div.pkpPublication__header div.pkpHeader__actions{
display: none;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
/**
* Service to manage the emails sent to contributors from different actions in OJS.
*
* Issue 079, Issue 081
* emailContributors custom submission field is managed in PPRSubmissionEmailContributorsService
*
* Issue 079, Issue 081, Issue 083, Issue 093
*/
class PPREmailContributorsService {

Expand Down
2 changes: 2 additions & 0 deletions pprOjsPlugin/services/reviewer/PPRReviewerGridHandler.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
/**
* Custom ReviewerGridHandler to control the form used when unassigning reviewers
* and the text for the "considered" column in the reviewers list panel.
*
* Issue 092
*/
class PPRReviewerGridHandler extends ReviewerGridHandler {

Expand Down
2 changes: 2 additions & 0 deletions pprOjsPlugin/services/reviewer/PPRReviewerGridService.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
*
* In order to achieve the new requirements, we need to override the ReviewerGridHandler
* to have control of the UnassignReviewerForm
*
* Issue 092
*/
class PPRReviewerGridService {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
* - Always cancel the review assignment when unassign reviewer is executed.
*
* This form is used in the ReviewerGridHandler
*
* Issue 092
*/
class PPRUnassignReviewerForm extends ReviewerNotifyActionForm {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
* Service to show a submission completed survey to an author only once.
* This survey is shown in the complete page in the author submission workflow.
* See SubmissionHandler->step
*
* Issue 098
*/
class PPRAuthorSubmissionSurveyService {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

/**
* Service to add the submission emailContributors custom field to the create submission > metadata form
*
*
* Issue 083
*/
class PPRSubmissionEmailContributorsService {
const EMAIL_CONTRIBUTORS_FIELD = 'emailContributors';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*
* This services adds the custom field to the add reviewer form
*
* Issue 074
* Issue 074, Issue 090
*/
class PPRSubmissionResearchTypeService {
const RESEARCH_TYPE_FIELD = 'researchType';
Expand Down
1 change: 1 addition & 0 deletions pprOjsPlugin/templates/common/userDetails.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
{/fbvFormSection}

<!-- REMOVED PREFERRED PUBLIC NAME -->
<!-- ISSUE 09 -->
{if !$pprPluginSettings->hidePreferredPublicNameEnabled()}
{fbvFormSection for="preferredPublicName" description="user.preferredPublicName.description"}
{fbvElement type="text" label="user.preferredPublicName" multilingual="true" name="preferredPublicName" id="preferredPublicName" value=$preferredPublicName size=$fbvStyles.size.LARGE}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
{if $pprPluginSettings->hideReviewRoundSelectionEnabled() && $decision === constant('SUBMISSION_EDITOR_DECISION_PENDING_REVISIONS')}
<script type="text/javascript">
{** HIDE REQUIRE REVISIONS ROUND SECTION *}
{** ISSUE 085 *}
$('form#sendReviews [id="decisionRevisions"]').closest('div').hide();
</script>
{/if}
Expand Down
1 change: 1 addition & 0 deletions pprOjsPlugin/templates/user/publicProfileForm.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
{/fbvFormSection}

<!-- PPR PROGRAM - REMOVE BIO -->
<!-- ISSUE 084 -->
{if !$pprPluginSettings->hideUserBioEnabled()}
{fbvFormSection}
{fbvElement type="textarea" label="user.biography" multilingual="true" name="biography" id="biography" rich=true value=$biography}
Expand Down
2 changes: 2 additions & 0 deletions pprReviewsReportPlugin/tasks/PPREditorReportTask.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@

/**
* Task to send the submissions/review report to a list of recipients configured in the plugin settings
*
* Issue 089
*/
class PPREditorReportTask extends ScheduledTask {

Expand Down

0 comments on commit 9e157fc

Please sign in to comment.