You are here

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

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

File

vendor/aklump/loft_data_grids/src/AKlump/LoftDataGrids/HTMLExporter.php, line 11

Class

HTMLExporter
Class HTMLExporter

Namespace

AKlump\LoftDataGrids

Code

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