You are here

public function Exporter::showPageIds 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::showPageIds()

Set the exporter to display page ids.

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

Return value

$this

Overrides ExporterInterface::showPageIds

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

File

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

Class

Exporter
Class Exporter

Namespace

AKlump\LoftDataGrids

Code

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