You are here

public function YAMLFrontMatterExporter::getInfo in Loft Data Grids 7.2

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/YAMLFrontMatterExporter.php, line 50

Class

YAMLFrontMatterExporter
Class YAMLFrontMatterExporter

Namespace

AKlump\LoftDataGrids

Code

public function getInfo() {
  $info = parent::getInfo();
  $info = array(
    'name' => 'YAML Front Matter Format',
    'shortname' => 'YAML Front Matter',
    'description' => 'Export data as text file with YAML Front Matter. For more information visit: http://www.yaml.org.',
  ) + $info;
  return $info;
}