first commit

This commit is contained in:
CHIEFSOFT\ameye
2024-06-08 17:09:23 -04:00
commit df3a033196
17887 changed files with 8637778 additions and 0 deletions
@@ -0,0 +1,85 @@
<?php
/**
* @file classes/controllers/grid/feature/selectableItems/ItemSelectionGridColumn.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 ItemSelectionGridColumn
*
* @ingroup classes_controllers_grid_feature_selectableItems
*
* @brief Implements a column with checkboxes to select grid items.
*/
namespace PKP\controllers\grid\feature\selectableItems;
use PKP\controllers\grid\ColumnBasedGridCellProvider;
use PKP\controllers\grid\GridColumn;
class ItemSelectionGridColumn extends GridColumn
{
/** @var string */
public $_selectName;
/**
* Constructor
*
* @param string $selectName The name of the form parameter
* to which the selected files will be posted.
*/
public function __construct($selectName)
{
assert(is_string($selectName) && !empty($selectName));
$this->_selectName = $selectName;
$cellProvider = new ColumnBasedGridCellProvider();
parent::__construct(
'select',
'common.select',
null,
'controllers/grid/gridRowSelectInput.tpl',
$cellProvider,
['width' => 3]
);
}
//
// Getters and Setters
//
/**
* Get the select name.
*
* @return string
*/
public function getSelectName()
{
return $this->_selectName;
}
//
// Public methods
//
/**
* Method expected by ColumnBasedGridCellProvider
* to render a cell in this column.
*
* @see ColumnBasedGridCellProvider::getTemplateVarsFromRowColumn()
*/
public function getTemplateVarsFromRow($row)
{
// Return the data expected by the column's cell template.
return [
'elementId' => $row->getId(),
'selectName' => $this->getSelectName(),
'selected' => $row->getFlag('selected')];
}
}
if (!PKP_STRICT_MODE) {
class_alias('\PKP\controllers\grid\feature\selectableItems\ItemSelectionGridColumn', '\ItemSelectionGridColumn');
}
@@ -0,0 +1,68 @@
<?php
/**
* @file classes/controllers/grid/feature/selectableItems/SelectableItemsFeature.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 SelectableItemsFeature
*
* @ingroup controllers_grid_feature_selectableItems
*
* @brief Implements grid widgets selectable items functionality.
*
*/
namespace PKP\controllers\grid\feature\selectableItems;
use PKP\controllers\grid\feature\GridFeature;
class SelectableItemsFeature extends GridFeature
{
/**
* Constructor.
*/
public function __construct()
{
parent::__construct('selectableItems');
}
//
// Hooks implementation.
//
/**
* @see GridFeature::gridInitialize()
*/
public function gridInitialize($args)
{
$grid = $args['grid'];
// Add checkbox column to the grid.
$grid->addColumn(new ItemSelectionGridColumn($grid->getSelectName()));
}
/**
* @see GridFeature::getInitializedRowInstance()
*/
public function getInitializedRowInstance($args)
{
/** @var \PKP\controllers\grid\CategoryGridHandler|\PKP\controllers\grid\GridHandler */
$grid = $args['grid'];
/** @var \PKP\controllers\grid\GridRow */
$row = $args['row'];
if ($grid instanceof \PKP\controllers\grid\CategoryGridHandler) {
$categoryId = $grid->getCurrentCategoryId();
$row->addFlag('selected', (bool) $grid->isDataElementInCategorySelected($categoryId, $row->getData()));
} else {
$row->addFlag('selected', (bool) $grid->isDataElementSelected($row->getData()));
}
}
}
if (!PKP_STRICT_MODE) {
class_alias('\PKP\controllers\grid\feature\selectableItems\SelectableItemsFeature', '\SelectableItemsFeature');
}