pleio/csv_exporter

There is no license information available for the latest version (dev-master) of this package.

Installs: 3 510

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 6

Forks: 2

Type:elgg-plugin

dev-master 2016-08-03 12:15 UTC

This package is not auto-updated.

Last update: 2024-05-01 00:18:26 UTC


README

This plugin allows you to export all searchable entities to a CSV.

How to

As an administrator go to the Admin section. Under Administer -> Utilities you can find the CSV Exporter menu item.

If a few easy steps you can select the CSV content.

  1. Select what you wish to export (Users, Groups, Blogs etc.)
  2. Once you've selected what you wish to export you get a choice of which columns to include
  3. Now you can click on Preview to check if this is what you wish to export
    or you can click Download CSV to export all the content to a CSV file

Developers

You can add your own values to the available list by registering a plugin hook like

elgg_register_plugin_hook_handler("get_exportable_values", "csv_exporter", "your function");

This hook get the following params:

  • type: the type of the entity to supply the values for
  • subtype: the subtype of the entity to supply the values for
  • readable: true|false, if true the result must be an associative array in the format array(label => value), this is used to display the checkboxes to the user.
    If false just return the value as part of an array (eg array(value)).

In order to export the correct values you have to also register a plugin hook

elgg_register_plugin_hook_handler("export_value", "csv_exporter", "your function");

This hook get the following params:

  • type: the type of the entity to supply the values for
  • subtype: the subtype of the entity to supply the values for
  • entity: the entity for which to export the value
  • exportable_value: the value to export

If you return anything other than null this value will be used, otherwise the system will try to get the exportable_value as a metadata field.