2012-02-09 16:02:47 +13:00
|
|
|
<?php
|
2012-03-06 15:01:17 +13:00
|
|
|
/**
|
|
|
|
* Adding this class to a {@link GridFieldConfig} of a {@link GridField} adds a header title to that field.
|
|
|
|
* The header serves double duty of displaying the name of the data the GridField is showing and
|
2012-03-09 16:49:18 +13:00
|
|
|
* providing a space for actions on this grid.
|
|
|
|
*
|
|
|
|
* This header provides two new HTML fragment spaces: 'toolbar-header-left' and 'toolbar-header-right'.
|
2012-03-06 15:01:17 +13:00
|
|
|
*
|
2012-04-12 18:02:46 +12:00
|
|
|
* @package framework
|
2012-03-06 15:01:17 +13:00
|
|
|
* @subpackage gridfield
|
|
|
|
*/
|
2012-03-09 12:54:02 +13:00
|
|
|
class GridFieldToolbarHeader implements GridField_HTMLProvider {
|
2012-03-08 13:58:53 +13:00
|
|
|
public function getHTMLFragments( $gridField) {
|
2012-02-09 16:02:47 +13:00
|
|
|
return array(
|
2012-03-09 16:49:18 +13:00
|
|
|
'header' => $gridField->renderWith('GridFieldToolbarHeader')
|
2012-02-09 16:02:47 +13:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|