mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
8dd644d25d
Namespace all templates Move difflib and BBCodeParser2 to thirdparty Remove deprecated API marked for removal in 4.0
29 lines
698 B
PHP
29 lines
698 B
PHP
<?php
|
|
|
|
namespace SilverStripe\Forms\GridField;
|
|
|
|
use SilverStripe\ORM\DataList;
|
|
use SilverStripe\ORM\SS_List;
|
|
|
|
/**
|
|
* Can modify the data list.
|
|
*
|
|
* For example, a paginating component can apply a limit, or a sorting
|
|
* component can apply a sort.
|
|
*
|
|
* Generally, the data manipulator will make use of to {@link GridState}
|
|
* variables to decide how to modify the {@link DataList}.
|
|
*/
|
|
interface GridField_DataManipulator extends GridFieldComponent
|
|
{
|
|
|
|
/**
|
|
* Manipulate the {@link DataList} as needed by this grid modifier.
|
|
*
|
|
* @param GridField $gridField
|
|
* @param SS_List $dataList
|
|
* @return DataList
|
|
*/
|
|
public function getManipulatedData(GridField $gridField, SS_List $dataList);
|
|
}
|