2012-02-09 04:02:47 +01:00
|
|
|
<?php
|
2013-05-20 12:18:07 +02:00
|
|
|
|
2016-08-19 00:51:35 +02:00
|
|
|
namespace SilverStripe\Forms\GridField;
|
|
|
|
|
|
|
|
use SilverStripe\View\SSViewer;
|
|
|
|
|
2012-03-06 03:01:17 +01:00
|
|
|
/**
|
2014-08-15 08:53:05 +02:00
|
|
|
* Adding this class to a {@link GridFieldConfig} of a {@link GridField} adds
|
2013-05-20 12:18:07 +02:00
|
|
|
* a header title to that field.
|
|
|
|
*
|
2012-05-17 03:22:24 +02:00
|
|
|
* The header serves to display the name of the data the GridField is showing.
|
2012-03-06 03:01:17 +01:00
|
|
|
*/
|
2012-03-09 00:54:02 +01:00
|
|
|
class GridFieldToolbarHeader implements GridField_HTMLProvider {
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2016-08-23 04:32:26 +02:00
|
|
|
/**
|
|
|
|
* @param GridField $gridField
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getHTMLFragments($gridField) {
|
|
|
|
$templates = SSViewer::get_templates_by_class($this, '', __CLASS__);
|
2012-02-09 04:02:47 +01:00
|
|
|
return array(
|
2016-08-23 04:32:26 +02:00
|
|
|
'header' => $gridField->renderWith($templates)
|
2012-02-09 04:02:47 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|