| Server IP : 195.134.90.114 / Your IP : 216.73.216.86 Web Server : Apache/2.4.58 System : Linux nepub 6.8.0-88-generic #89-Ubuntu SMP PREEMPT_DYNAMIC Sat Oct 11 01:02:46 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 8.2.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/public_html/lib/pkp/controllers/grid/files/ |
Upload File : |
<?php
/**
* @file controllers/grid/files/LibraryFileGridRow.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 LibraryFileGridRow
* @ingroup controllers_grid_files
*
* @brief Handle library file grid row requests.
*/
import('lib.pkp.classes.controllers.grid.GridRow');
// Link action & modal classes
import('lib.pkp.classes.linkAction.request.AjaxModal');
import('lib.pkp.classes.linkAction.request.RemoteActionConfirmationModal');
class LibraryFileGridRow extends GridRow {
/** @var int LIBRARY_FILE_TYPE_... */
var $_fileType;
/** is the grid row read only **/
var $_canEdit;
/** the submission associated with submission library files **/
var $_submission;
/**
* Constructor
*/
function __construct($canEdit = false, $submission = null) {
$this->_canEdit = $canEdit;
$this->_submission = $submission;
parent::__construct();
}
//
// Getters / setters
//
/**
* Get the file type for this row
* @return fileType
*/
function getFileType() {
return $this->_fileType;
}
function setFileType($fileType) {
$this->_fileType = $fileType;
}
//
// Overridden template methods
//
/**
* @copydoc GridRow::initialize()
*/
function initialize($request, $template = null) {
parent::initialize($request, $template);
$this->setFileType($request->getUserVar('fileType'));
// Is this a new row or an existing row?
$fileId = $this->getId();
if (!empty($fileId) && $this->_canEdit) {
// Actions
$router = $request->getRouter();
$actionArgs = array(
'fileId' => $fileId,
);
if ($this->_submission) {
$actionArgs['submissionId'] = $this->_submission->getId();
}
$this->addAction(
new LinkAction(
'editFile',
new AjaxModal(
$router->url($request, null, null, 'editFile', null, $actionArgs),
__('grid.action.edit'),
'modal_edit'
),
__('grid.action.edit'),
'edit'
)
);
$this->addAction(
new LinkAction(
'deleteFile',
new RemoteActionConfirmationModal(
$request->getSession(),
__('common.confirmDelete'), __('common.delete'),
$router->url($request, null, null, 'deleteFile', null, $actionArgs),
'modal_delete'
),
__('grid.action.delete'),
'delete'
)
);
}
}
}