| Server IP : 89.117.53.150 / Your IP : 216.73.216.11 Web Server : Apache System : Linux server2.hostofiraq.site 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64 User : iscmbt-kufa-atu ( 1014) PHP Version : 8.2.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/iscmbt-kufa-atu/quarantine/ |
Upload File : |
<?php
/**
* @file controllers/api/file/linkAction/FileLinkAction.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 FileLinkAction
*
* @ingroup controllers_api_file_linkAction
*
* @brief An abstract file action.
*/
namespace PKP\controllers\api\file\linkAction;
use PKP\linkAction\LinkAction;
use PKP\submissionFile\SubmissionFile;
class FileLinkAction extends LinkAction
{
//
// Protected helper function
//
/**
* Return the action arguments to address a file.
*
* @param SubmissionFile $submissionFile
* @param int $stageId (optional)
*
* @return array
*/
public function getActionArgs($submissionFile, $stageId = null)
{
assert($submissionFile instanceof SubmissionFile);
// Create the action arguments array.
$args = [
'submissionFileId' => $submissionFile->getId(),
'submissionId' => $submissionFile->getData('submissionId')
];
if ($stageId) {
$args['stageId'] = $stageId;
}
return $args;
}
}