You are here

public function MarkdownExporter::getInfo in Loft Data Grids 6.2

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

Return info about this class

Parameters

type $string: description

Return value

array

  • name string The human name of this exporter
  • shortname string A more concise human name for ui elements like option lists
  • descripttion 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/MarkdownExporter.php, line 10

Class

MarkdownExporter
Class MarkdownExporter

Namespace

AKlump\LoftDataGrids

Code

public function getInfo() {
  $info = parent::getInfo();
  $info = array(
    'name' => 'Markdown',
    'shortname' => 'Markdown',
    'description' => 'Export data in Markdown file format. For more information visit: http://daringfireball.net/projects/markdown/.',
  ) + $info;
  return $info;
}