You are here

public function FlatTextExporter::getInfo in Loft Data Grids 7.2

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

Return info about this class

Return value

array

  • name string The human name of this exporter
  • shortname string A more concise human name for ui elements like

option lists

  • description string A further description
  • extension string The file extension used by this class

Overrides CSVExporter::getInfo

1 call to FlatTextExporter::getInfo()
MarkdownTableExporter::getInfo in vendor/aklump/loft_data_grids/src/AKlump/LoftDataGrids/MarkdownTableExporter.php
Return info about this class
1 method overrides FlatTextExporter::getInfo()
MarkdownTableExporter::getInfo in vendor/aklump/loft_data_grids/src/AKlump/LoftDataGrids/MarkdownTableExporter.php
Return info about this class

File

vendor/aklump/loft_data_grids/src/AKlump/LoftDataGrids/FlatTextExporter.php, line 32

Class

FlatTextExporter
Class FlatTextExporter

Namespace

AKlump\LoftDataGrids

Code

public function getInfo() {
  $info = parent::getInfo();
  $info = array(
    'name' => 'Monospace Flatfile Text',
    'shortname' => 'Flat Text',
    'description' => 'Export data in a plain-text format.  Columns and rows are drawn with text pipes and hyphens.  Best results when using monospaced fonts.',
  ) + $info;
  return $info;
}