| Server IP : 195.134.90.114 / Your IP : 216.73.216.191 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/users/author/ |
Upload File : |
<?php
/**
* @file controllers/grid/users/author/AuthorGridRow.inc.php
*
* Copyright (c) 2014-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 AuthorGridRow
* @ingroup controllers_grid_users_author
*
* @brief Base class for author grid row definition
*/
import('lib.pkp.classes.controllers.grid.GridRow');
class AuthorGridRow extends GridRow {
/** @var Submission **/
var $_submission;
/** @var Publication **/
var $_publication;
/** @var boolean */
var $_readOnly;
/** @var int */
var $_version;
/**
* Constructor
*/
function __construct($submission, $publication, $readOnly = false) {
$this->_submission = $submission;
$this->_publication = $publication;
$this->_readOnly = $readOnly;
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();
if (!empty($rowId) && is_numeric($rowId)) {
// Only add row actions if this is an existing row
$router = $request->getRouter();
$actionArgs = $this->getRequestArgs();
$actionArgs['authorId'] = $rowId;
if (!$this->isReadOnly()) {
// Add row-level actions
import('lib.pkp.classes.linkAction.request.AjaxModal');
$this->addAction(
new LinkAction(
'editAuthor',
new AjaxModal(
$router->url($request, null, null, 'editAuthor', null, $actionArgs),
__('grid.action.editContributor'),
'modal_edit'
),
__('grid.action.edit'),
'edit'
)
);
import('lib.pkp.classes.linkAction.request.RemoteActionConfirmationModal');
$this->addAction(
new LinkAction(
'deleteAuthor',
new RemoteActionConfirmationModal(
$request->getSession(),
__('common.confirmDelete'),
__('common.delete'),
$router->url($request, null, null, 'deleteAuthor', null, $actionArgs),
'modal_delete'
),
__('grid.action.delete'),
'delete'
)
);
$authorDao = DAORegistry::getDAO('AuthorDAO'); /* @var $authorDao AuthorDAO */
$userDao = DAORegistry::getDAO('UserDAO'); /* @var $userDao UserDAO */
$author = $authorDao->getById($rowId, $this->getPublication()->getId());
if ($author && !$userDao->userExistsByEmail($author->getEmail())) {
$this->addAction(
new LinkAction(
'addUser',
new AjaxModal(
$router->url($request, null, null, 'addUser', null, $actionArgs),
__('grid.user.add'),
'modal_add_user',
true
),
__('grid.user.add'),
'add_user')
);
}
}
}
}
/**
* Get the submission for this row (already authorized)
* @return Submission
*/
function getSubmission() {
return $this->_submission;
}
/**
* Get the publication for this row (already authorized)
* @return Publication
*/
function getPublication() {
return $this->_publication;
}
/**
* Get the base arguments that will identify the data in the grid.
* @return array
*/
function getRequestArgs() {
$submission = $this->getSubmission();
$publication = $this->getPublication();
return array(
'submissionId' => $submission->getId(),
'publicationId' => $publication->getId()
);
}
/**
* Determines whether the current user can create user accounts from authors present
* in the grid.
* Overridden by child grid rows.
* @param PKPRequest $request
* @return boolean
*/
function allowedToCreateUser($request) {
return false;
}
/**
* Determine if this grid row should be read only.
* @return boolean
*/
function isReadOnly() {
return $this->_readOnly;
}
}