VboExportCsv.php in VBO export 8
Same filename and directory in other branches
Namespace
Drupal\vbo_export\Plugin\ActionFile
src/Plugin/Action/VboExportCsv.phpView source
<?php
namespace Drupal\vbo_export\Plugin\Action;
/**
* Generates csv.
*
* @Action(
* id = "vbo_export_generate_csv_action",
* label = @Translation("Generate csv from selected view results"),
* type = "node"
* )
*/
class VboExportCsv extends VboExportBase {
const THEME = 'vbo_export_content_csv';
const EXTENSION = 'csv';
}
Classes
Name | Description |
---|---|
VboExportCsv | Generates csv. |