README.txt 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. Views Data Export
  2. =================
  3. Introduction
  4. ------------
  5. This module is designed to provide a way to export large amounts of data from
  6. views. It provides a display plugin that can rendered progressively in a batch.
  7. Style plugins are include that support exporting in the following types:
  8. * CSV
  9. * Microsoft XLS
  10. * Microsoft Doc
  11. * Basic txt
  12. * Simple xml.
  13. Using the "Views Data Export" module
  14. ------------------------------------
  15. 1. Add a new "Data export" display to your view.
  16. 2. Change its "Style" to the desired export type. e.g. "CSV file".
  17. 3. Configure the options (such as name, quote, etc.). You can go back and do
  18. this at any time by clicking the gear icon next to the style plugin you just
  19. selected.
  20. 4. Give it a path in the Feed settings such as "path/to/view/csv".
  21. 5. Optionally, you can choose to attach this to another of your displays by
  22. updating the "Attach to:" option in feed settings.
  23. Advanced usage
  24. --------------
  25. This module also exposes a drush command that can execute the view and save its
  26. results to a file.
  27. drush views-data-export [view-name] [display-id] [output-file]
  28. History
  29. -------
  30. This module has its roots in the export module that was part of the views bonus
  31. pack (http://drupal.org/project/views_bonus). However, massive changes were
  32. needed to make the batch export functionality work, and so this fork was
  33. created. See: http://drupal.org/node/805960