Get People Involved in the Submission Process of an Issue

Hi,

I am developing a theme for OJS. One of the requirements of the theme is to display the “masthead” of an issue/article. In the masthead, we want to list all of the users involved in the review process of that issue/article and their role in the review process.

Is this something that can be retrieved through a DataStructure? The only thing I was able to find is that one can retrieve the Author, but as I mentioned, I would also like to get the information of everyone that was involved in the publication.

Thanks in advance!

ReviewAssignmentDAO::getBySubmissionId will give you review assignments for a specific submission.

You’ll need to check the ReviewAssignment status, acceptance, and blinding in order to determine whether it is appropriate to show for the article:

Thanks! This is what I needed.