mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
18 lines
532 B
PHP
18 lines
532 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 {
|
||
|
public function getHTMLFragments( $gridField) {
|
||
|
return array(
|
||
|
'buttons' => $gridField->renderWith('GridFieldButtonRow')
|
||
|
);
|
||
|
}
|
||
|
}
|