silverstripe-framework/forms/gridfield/GridFieldToolbarHeader.php
Damian Mooyman c9b6e9bac0
API Update template lookup to late resolution for performance reasons
API Update behaviour of form fields to use standard template lookup mechanism
API Support custom "type" parameter to template lookup
2016-09-06 12:54:03 +12:00

25 lines
585 B
PHP

<?php
/**
* 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.
*
* @package forms
* @subpackage fields-gridfield
*/
class GridFieldToolbarHeader implements GridField_HTMLProvider {
/**
* @param GridField $gridField
* @return array
*/
public function getHTMLFragments($gridField) {
$templates = SSViewer::get_templates_by_class($this, '', __CLASS__);
return array(
'header' => $gridField->renderWith($templates)
);
}
}