public function DrupalTableExporter::getInfo in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 src/AKlump/LoftDataGrids/DrupalTableExporter.php \AKlump\LoftDataGrids\DrupalTableExporter::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
- includes/
DrupalTableExporter.php, line 11
Class
- DrupalTableExporter
- Class DrupalTableExporter
Namespace
AKlump\LoftDataGridsCode
public function getInfo() {
$info = parent::getInfo();
$info = array(
'name' => 'Drupal table formatter',
'shortname' => 'theme_table',
'description' => 'Export data using theme_table().',
) + $info;
return $info;
}