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