public function DrupalTableExporter::getInfo in Loft Data Grids 8
File
- src/
DrupalTableExporter.php, line 16
Class
- DrupalTableExporter
- Class DrupalTableExporter
Namespace
Drupal\loft_data_gridsCode
public function getInfo() {
$info = parent::getInfo();
$info = [
'name' => 'Drupal table formatter',
'shortname' => 'theme_table',
'description' => 'Export data using theme_table().',
] + $info;
return $info;
}