silverstripe-framework/forms/gridfield/GridFieldToolbarHeader.php

19 lines
628 B
PHP
Raw Normal View History

2012-02-09 04:02:47 +01:00
<?php
2012-03-06 03:01:17 +01: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
* 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 03:01:17 +01:00
*
* @package framework
2012-03-06 03:01:17 +01:00
* @subpackage gridfield
*/
class GridFieldToolbarHeader implements GridField_HTMLProvider {
public function getHTMLFragments( $gridField) {
2012-02-09 04:02:47 +01:00
return array(
'header' => $gridField->renderWith('GridFieldToolbarHeader')
2012-02-09 04:02:47 +01:00
);
}
}