You are here

public function TextListExporter::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/TextListExporter.php \AKlump\LoftDataGrids\TextListExporter::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 Exporter::getInfo

File

vendor/aklump/loft_data_grids/src/AKlump/LoftDataGrids/TextListExporter.php, line 14

Class

TextListExporter
Class TextListExporter

Namespace

AKlump\LoftDataGrids

Code

public function getInfo() {
  $info = parent::getInfo();
  $info = array(
    'name' => 'Plaintext List',
    'shortname' => 'List',
    'description' => 'Export data in plaintext list file format.',
  ) + $info;
  return $info;
}