| 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/QueriesGridCellProvider.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 QueriesGridCellProvider
* @ingroup controllers_grid_queries
*
* @brief Base class for a cell provider that can retrieve labels for queries.
*/
use function PHP81_BC\strftime;
import('lib.pkp.classes.controllers.grid.DataObjectGridCellProvider');
class QueriesGridCellProvider extends DataObjectGridCellProvider {
/** @var Submission **/
var $_submission;
/** @var int **/
var $_stageId;
/** @var QueriesAccessHelper */
var $_queriesAccessHelper;
/**
* Constructor
* @param $submission Submission
* @param $stageId int
* @param $queriesAccessHelper QueriesAccessHelper
*/
function __construct($submission, $stageId, $queriesAccessHelper) {
parent::__construct();
$this->_submission = $submission;
$this->_stageId = $stageId;
$this->_queriesAccessHelper = $queriesAccessHelper;
}
//
// Template methods from GridCellProvider
//
/**
* Extracts variables for a given column from a data element
* so that they may be assigned to template before rendering.
* @param $row GridRow
* @param $column GridColumn
* @return array
*/
function getTemplateVarsFromRowColumn($row, $column) {
$element = $row->getData();
$columnId = $column->getId();
assert(is_a($element, 'DataObject') && !empty($columnId));
$headNote = $element->getHeadNote();
$user = $headNote?$headNote->getUser():null;
$notes = $element->getReplies(null, NOTE_ORDER_ID, SORT_DIRECTION_DESC);
$context = \Application::get()->getRequest()->getContext();
$datetimeFormatShort = $context->getLocalizedDateTimeFormatShort();
switch ($columnId) {
case 'replies':
return array('label' => max(0,$notes->getCount()-1));
case 'from':
return array('label' => ($user?$user->getUsername():'—') . '<br />' . ($headNote?strftime($datetimeFormatShort, strtotime($headNote->getDateCreated())):''));
case 'lastReply':
$latestReply = $notes->next();
if ($latestReply && $latestReply->getId() != $headNote->getId()) {
$repliedUser = $latestReply->getUser();
return array('label' => ($repliedUser?$repliedUser->getUsername():'—') . '<br />' . strftime($datetimeFormatShort, strtotime($latestReply->getDateCreated())));
} else {
return array('label' => '-');
}
case 'closed':
return array(
'selected' => $element->getIsClosed(),
'disabled' => !$this->_queriesAccessHelper->getCanOpenClose($element),
);
}
return parent::getTemplateVarsFromRowColumn($row, $column);
}
/**
* @copydoc GridCellProvider::getCellActions()
*/
function getCellActions($request, $row, $column, $position = GRID_ACTION_POSITION_DEFAULT) {
import('lib.pkp.classes.linkAction.request.RemoteActionConfirmationModal');
import('lib.pkp.classes.linkAction.request.AjaxAction');
$element = $row->getData();
$router = $request->getRouter();
$actionArgs = $this->getRequestArgs($row);
switch ($column->getId()) {
case 'closed':
if ($this->_queriesAccessHelper->getCanOpenClose($element)) {
$enabled = !$element->getIsClosed();
if ($enabled) {
return array(new LinkAction(
'close-' . $row->getId(),
new AjaxAction($router->url($request, null, null, 'closeQuery', null, $actionArgs)),
null, null
));
} else {
return array(new LinkAction(
'open-' . $row->getId(),
new AjaxAction($router->url($request, null, null, 'openQuery', null, $actionArgs)),
null, null
));
}
}
break;
}
return parent::getCellActions($request, $row, $column, $position);
}
/**
* Get request arguments.
* @param $row GridRow
* @return array
*/
function getRequestArgs($row) {
return array(
'submissionId' => $this->_submission->getId(),
'stageId' => $this->_stageId,
'queryId' => $row->getId(),
);
}
}