| 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/queries/ |
Upload File : |
<?php
/**
* @file controllers/grid/queries/QueryNotesGridRow.inc.php
*
* Copyright (c) 2016-2021 Simon Fraser University
* Copyright (c) 2000-2021 John Willinsky
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
*
* @class QueryNotesGridRow
* @ingroup controllers_grid_queries
*
* @brief Base class for query grid row definition
*/
import('lib.pkp.classes.controllers.grid.GridRow');
class QueryNotesGridRow extends GridRow {
/** @var array **/
var $_actionArgs;
/** @var Query */
var $_query;
/** @var QueryNotesGridHandler */
var $_queryNotesGrid;
/**
* Constructor
* @param $actionArgs array Action arguments
* @param $query Query
* @param $queryNotesGrid The notes grid containing this row
*/
function __construct($actionArgs, $query, $queryNotesGrid) {
$this->_actionArgs = $actionArgs;
$this->_query = $query;
$this->_queryNotesGrid = $queryNotesGrid;
parent::__construct();
}
//
// Overridden methods from GridRow
//
/**
* @copydoc GridRow::initialize()
*/
function initialize($request, $template = null) {
// Do the default initialization
parent::initialize($request, $template);
// Is this a new row or an existing row?
$rowId = $this->getId();
$headNote = $this->getQuery()->getHeadNote();
if (!empty($rowId) && is_numeric($rowId) && (!$headNote || $headNote->getId() != $rowId)) {
// Only add row actions if this is an existing row
$router = $request->getRouter();
$actionArgs = array_merge(
$this->_actionArgs,
array('noteId' => $rowId)
);
// Add row-level actions
if ($this->_queryNotesGrid->getCanManage($this->getData())) {
import('lib.pkp.classes.linkAction.request.RemoteActionConfirmationModal');
$this->addAction(
new LinkAction(
'deleteNote',
new RemoteActionConfirmationModal(
$request->getSession(),
__('common.confirmDelete'),
__('grid.action.delete'),
$router->url($request, null, null, 'deleteNote', null, $actionArgs), 'modal_delete'),
__('grid.action.delete'),
'delete')
);
}
}
}
/**
* Get the query
* @return Query
*/
function getQuery() {
return $this->_query;
}
/**
* Get the base arguments that will identify the data in the grid.
* @return array
*/
function getRequestArgs() {
return $this->_actionArgs;
}
}