You are here

public function Exporter::setTitle in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/aklump/loft_data_grids/src/AKlump/LoftDataGrids/Exporter.php \AKlump\LoftDataGrids\Exporter::setTitle()

Set a title for the exported document

Return value

$this

Overrides ExporterInterface::setTitle

1 call to Exporter::setTitle()
XLSXExporter::setTitle in vendor/aklump/loft_data_grids/src/AKlump/LoftDataGrids/XLSXExporter.php
Set a title for the exported document
1 method overrides Exporter::setTitle()
XLSXExporter::setTitle in vendor/aklump/loft_data_grids/src/AKlump/LoftDataGrids/XLSXExporter.php
Set a title for the exported document

File

vendor/aklump/loft_data_grids/src/AKlump/LoftDataGrids/Exporter.php, line 82

Class

Exporter
Class Exporter

Namespace

AKlump\LoftDataGrids

Code

public function setTitle($title) {
  $this->title = $title;
  return $this;
}