| 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/classes/controllers/grid/ |
Upload File : |
<?php
/**
* @file classes/controllers/grid/GridDataProvider.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 GridDataProvider
* @ingroup classes_controllers_grid
*
* @brief Grid data providers serve data to the grid classes for presentation
* in a grid.
*
* For general information about grids, see GridHandler.
*/
class GridDataProvider {
/** @var array */
var $_authorizedContext;
/**
* Constructor
*/
function __construct() {
}
//
// Getters and Setters
//
/**
* Set the authorized context once it
* is established.
* @param $authorizedContext array
*/
function setAuthorizedContext(&$authorizedContext) {
$this->_authorizedContext =& $authorizedContext;
}
/**
* Retrieve an object from the authorized context
* @param $assocType integer
* @return mixed will return null if the context
* for the given assoc type does not exist.
*/
function &getAuthorizedContextObject($assocType) {
if ($this->hasAuthorizedContextObject($assocType)) {
return $this->_authorizedContext[$assocType];
} else {
$nullVar = null;
return $nullVar;
}
}
/**
* Check whether an object already exists in the
* authorized context.
* @param $assocType integer
* @return boolean
*/
function hasAuthorizedContextObject($assocType) {
return isset($this->_authorizedContext[$assocType]);
}
//
// Template methods to be implemented by subclasses
//
/**
* Get the authorization policy.
* @param $request PKPRequest
* @param $args array
* @param $roleAssignments array
* @return PolicySet
*/
function getAuthorizationPolicy($request, $args, $roleAssignments) {
throw new Exception('getRequestArgs called but not implemented!');
}
/**
* Get an array with all request parameters
* necessary to uniquely identify the data
* selection of this data provider.
* @return array
*/
function getRequestArgs() {
throw new Exception('getRequestArgs called but not implemented!');
}
/**
* Retrieve the data to load into the grid.
* @param $filter array An optional associative array with filter data
* as returned by GridHandler::getFilterSelectionData(). If no filter
* has been selected by the user then the array will be empty.
* @return array
*/
function loadData($filter = []) {
throw new Exception('getRequestArgs called but not implemented!');
}
}