silverstripe-framework/forms/gridfield/GridFieldToolbarHeader.php

20 lines
475 B
PHP
Raw Normal View History

2012-02-09 16:02:47 +13:00
<?php
2012-03-06 15:01:17 +13:00
/**
2014-08-15 18:53:05 +12:00
* Adding this class to a {@link GridFieldConfig} of a {@link GridField} adds
* a header title to that field.
*
* The header serves to display the name of the data the GridField is showing.
2012-03-06 15:01:17 +13:00
*
* @package forms
* @subpackage fields-gridfield
2012-03-06 15:01:17 +13:00
*/
class GridFieldToolbarHeader implements GridField_HTMLProvider {
2014-08-15 18:53:05 +12:00
public function getHTMLFragments( $gridField) {
2012-02-09 16:02:47 +13:00
return array(
2016-07-14 00:36:52 +12:00
'header' => $gridField->renderWith('Includes/GridFieldToolbarHeader')
2012-02-09 16:02:47 +13:00
);
}
}