You are here

public function Exporter::hidePageIds in Loft Data Grids 6.2

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

Set the exporter to hide page ids.

It's up to the class to respect this setting or not.

Return value

$this

Overrides ExporterInterface::hidePageIds

1 call to Exporter::hidePageIds()
FlatTextExporter::__construct in vendor/aklump/loft_data_grids/src/AKlump/LoftDataGrids/FlatTextExporter.php
Constructor

File

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

Class

Exporter
Class Exporter

Namespace

AKlump\LoftDataGrids

Code

public function hidePageIds() {
  $this
    ->addSetting('showPageIds', FALSE);
  return $this;
}