PKPSubmissionFileDAO::getRevisionsByReviewRound PHP Method

getRevisionsByReviewRound() public method

Get all file revisions assigned to the given review round.
public getRevisionsByReviewRound ( $reviewRound, $fileStage = null, $uploaderUserId = null, $uploaderUserGroupId = null ) : array | null
$reviewRound ReviewRound
$fileStage int SUBMISSION_FILE_...
$uploaderUserId int Uploader's user ID
$uploaderUserGroupId int Uploader's user group ID
return array | null A list of SubmissionFiles.
    function getRevisionsByReviewRound($reviewRound, $fileStage = null, $uploaderUserId = null, $uploaderUserGroupId = null)
    {
        if (!is_a($reviewRound, 'ReviewRound')) {
            return null;
        }
        return $this->_getInternally($reviewRound->getSubmissionId(), $fileStage, null, null, null, null, null, $uploaderUserId, $uploaderUserGroupId, $reviewRound->getId());
    }