KONTOLODON
/
var
/
www
/
ojs-3.3.0-13
/
lib
/
pkp
/
controllers
/
grid
/
files
/
copyedit
/
form
/
Nama File / Folder
Size
Action
ManageCopyeditFilesForm.inc.php
1.09KB
Hapus
Edit
Rename
<=Back
<?php /** * @file controllers/grid/files/copyedit/form/ManageCopyeditFilesForm.inc.php * * Copyright (c) 2014-2021 Simon Fraser University * Copyright (c) 2003-2021 John Willinsky * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @class ManageCopyeditFilesForm * @ingroup controllers_grid_files_copyedit * * @brief Form to add files to the copyedited files grid */ import('lib.pkp.controllers.grid.files.form.ManageSubmissionFilesForm'); class ManageCopyeditFilesForm extends ManageSubmissionFilesForm { /** * Constructor. * @param $submissionId int Submission ID. */ function __construct($submissionId) { parent::__construct($submissionId, 'controllers/grid/files/copyedit/manageCopyeditFiles.tpl'); } /** * Save selection of copyedited files * @param $stageSubmissionFiles array List of submission files in this stage. * @param $fileStage int SUBMISSION_FILE_... */ function execute($stageSubmissionFiles = null, $fileStage = null, ...$functionArgs) { parent::execute($stageSubmissionFiles, SUBMISSION_FILE_COPYEDIT, ...$functionArgs); } }
Liking