This plugin allows you to export all searchable entities to a CSV., (*1)
As an administrator go to the Admin section. Under Administer -> Utilities you can find the CSV Exporter menu item., (*2)
If a few easy steps you can select the CSV content., (*3)
You can add your own values to the available list by registering a plugin hook like, (*4)
elgg_register_plugin_hook_handler("get_exportable_values", "csv_exporter", "your function");
, (*5)
This hook get the following params:, (*6)
In order to export the correct values you have to also register a plugin hook, (*7)
elgg_register_plugin_hook_handler("export_value", "csv_exporter", "your function");
, (*8)
This hook get the following params:, (*9)
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., (*10)