mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
bcc73de85e
Conflicts: admin/code/LeftAndMain.php admin/css/screen.css admin/scss/_style.scss admin/templates/Includes/LeftAndMain_EditForm.ss css/GridField.css filesystem/Folder.php forms/gridfield/GridField.php forms/gridfield/GridFieldDefaultColumns.php forms/gridfield/GridFieldPopupForms.php
121 lines
2.9 KiB
PHP
Executable File
121 lines
2.9 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* GridFieldPaginator paginates the gridfields list and adds controlls to the
|
|
* bottom of the gridfield.
|
|
*
|
|
* @package sapphire
|
|
* @subpackage fields-relational
|
|
*/
|
|
class GridFieldPaginator implements GridField_HTMLProvider, GridField_DataManipulator, GridField_ActionProvider {
|
|
|
|
/**
|
|
*
|
|
* @var int
|
|
*/
|
|
protected $currentPage = 1;
|
|
|
|
/**
|
|
*
|
|
* @var int
|
|
*/
|
|
protected $itemsPerPage = 15;
|
|
|
|
/**
|
|
* Which template to use for rendering
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $itemClass = 'GridFieldPaginator_Row';
|
|
|
|
/**
|
|
*
|
|
* @param int $itemsPerPage - How many items should be displayed per page
|
|
*/
|
|
public function __construct($itemsPerPage=15) {
|
|
$this->itemsPerPage = $itemsPerPage;
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param GridField $gridField
|
|
* @return array
|
|
*/
|
|
public function getActions($gridField) {
|
|
return array('paginate');
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param GridField $gridField
|
|
* @param string $actionName
|
|
* @param string $arguments
|
|
* @param array $data
|
|
* @return void
|
|
*/
|
|
public function handleAction(GridField $gridField, $actionName, $arguments, $data) {
|
|
if($actionName !== 'paginate') {
|
|
return;
|
|
}
|
|
$state = $gridField->State->GridFieldPaginator;
|
|
$this->currentPage = $state->currentPage = (int)$arguments;
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param GridField $gridField
|
|
* @param SS_List $dataList
|
|
* @return SS_List
|
|
*/
|
|
public function getManipulatedData(GridField $gridField, SS_List $dataList) {
|
|
if(!$this->getListPaginatable($dataList)) {
|
|
return $dataList;
|
|
}
|
|
if(!$this->currentPage) {
|
|
return $dataList->getRange(0, (int)$this->itemsPerPage);
|
|
}
|
|
$startRow = $this->itemsPerPage*($this->currentPage-1);
|
|
return $dataList->getRange((int)$startRow, (int)$this->itemsPerPage);
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param GridField $gridField
|
|
* @return array
|
|
*/
|
|
public function getHTMLFragments($gridField) {
|
|
$forTemplate = new ArrayData(array());
|
|
$forTemplate->Fields = new ArrayList;
|
|
|
|
$countList = clone $gridField->List;
|
|
$totalRows = $countList->limit(null)->count();
|
|
$totalPages = ceil($totalRows/$this->itemsPerPage);
|
|
for($idx=1; $idx<=$totalPages; $idx++) {
|
|
if($idx == $this->currentPage) {
|
|
$field = new LiteralField('pagination_'.$idx, $idx);
|
|
} else {
|
|
$field = new GridField_Action($gridField, 'pagination_'.$idx, $idx, 'paginate', $idx);
|
|
$field->addExtraClass('ss-gridfield-button');
|
|
}
|
|
|
|
$forTemplate->Fields->push($field);
|
|
}
|
|
if(!$forTemplate->Fields->Count()) {
|
|
return array();
|
|
}
|
|
return array(
|
|
'footer' => $forTemplate->renderWith('GridFieldPaginator_Row', array('Colspan'=>count($gridField->getColumns()))),
|
|
);
|
|
}
|
|
|
|
/** Duck check to see if list support methods we need to paginate */
|
|
protected function getListPaginatable(SS_List $list) {
|
|
// If no list yet, not paginatable
|
|
if (!$list) return false;
|
|
// Check for methods we use
|
|
if(!method_exists($list, 'getRange')) return false;
|
|
if(!method_exists($list, 'limit')) return false;
|
|
// Default it true
|
|
return true;
|
|
}
|
|
}
|