Blame view

framework/forms/gridfield/GridFieldToolbarHeader.php 468 Bytes
0084d336   Administrator   Importers CRUD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  <?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 {
  	
  	public function getHTMLFragments( $gridField) {
  		return array(
  			'header' => $gridField->renderWith('GridFieldToolbarHeader')
  		);
  	}
  }