silverstripe-framework/forms/gridfield/GridFieldButtonRow.php

34 lines
935 B
PHP
Raw Normal View History

<?php
/**
2014-08-15 08:53:05 +02:00
* Adding this class to a {@link GridFieldConfig} of a {@link GridField} adds
* a button row to that field.
2014-08-15 08:53:05 +02:00
*
* The button row provides a space for actions on this grid.
2014-08-15 08:53:05 +02:00
*
* This row provides two new HTML fragment spaces: 'toolbar-header-left' and
* 'toolbar-header-right'.
*
* @package forms
* @subpackage fields-gridfield
*/
class GridFieldButtonRow implements GridField_HTMLProvider {
protected $targetFragment;
2014-08-15 08:53:05 +02:00
public function __construct($targetFragment = 'before') {
$this->targetFragment = $targetFragment;
}
public function getHTMLFragments( $gridField) {
$data = new ArrayData(array(
"TargetFragmentName" => $this->targetFragment,
"LeftFragment" => "\$DefineFragment(buttons-{$this->targetFragment}-left)",
"RightFragment" => "\$DefineFragment(buttons-{$this->targetFragment}-right)",
));
2014-08-15 08:53:05 +02:00
return array(
$this->targetFragment => $data->renderWith('GridFieldButtonRow')
);
}
}