You are here

public function XMLExporter::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/XMLExporter.php \AKlump\LoftDataGrids\XMLExporter::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/XMLExporter.php, line 10

Class

XMLExporter
Class XMLExporter

Namespace

AKlump\LoftDataGrids

Code

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