mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
1747298786
* Add ability to choose where to put buttons (in buttonRow, toolbar header, etc) * Adjust styles to take these changes into account
28 lines
872 B
PHP
28 lines
872 B
PHP
<?php
|
|
/**
|
|
* Adding this class to a {@link GridFieldConfig} of a {@link GridField} adds a buttonrow to that field.
|
|
* The button row provides a space for actions on this grid.
|
|
*
|
|
* This row provides two new HTML fragment spaces: 'toolbar-header-left' and 'toolbar-header-right'.
|
|
*
|
|
* @package framework
|
|
* @subpackage gridfield
|
|
*/
|
|
class GridFieldButtonRow implements GridField_HTMLProvider {
|
|
protected $targetFragment;
|
|
|
|
public function __construct($targetFragment = 'before') {
|
|
$this->targetFragment = $targetFragment;
|
|
}
|
|
|
|
public function getHTMLFragments( $gridField) {
|
|
$data = new ArrayData(array(
|
|
"LeftFragment" => "\$DefineFragment(buttons-{$this->targetFragment}-left)",
|
|
"RightFragment" => "\$DefineFragment(buttons-{$this->targetFragment}-right)",
|
|
));
|
|
return array(
|
|
$this->targetFragment => $data->renderWith('GridFieldButtonRow')
|
|
);
|
|
}
|
|
}
|