{"id":21739503,"url":"https://github.com/libreform/export","last_synced_at":"2025-04-13T03:29:15.778Z","repository":{"id":57003699,"uuid":"79917198","full_name":"libreform/export","owner":"libreform","description":"Export plugin for WP Libre Form","archived":false,"fork":false,"pushed_at":"2018-01-12T11:30:44.000Z","size":60,"stargazers_count":4,"open_issues_count":3,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-26T20:49:28.185Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/libreform.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-01-24T14:08:08.000Z","updated_at":"2022-05-26T08:11:02.000Z","dependencies_parsed_at":"2022-08-21T11:40:49.851Z","dependency_job_id":null,"html_url":"https://github.com/libreform/export","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/libreform%2Fexport","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/libreform%2Fexport/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/libreform%2Fexport/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/libreform%2Fexport/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/libreform","download_url":"https://codeload.github.com/libreform/export/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248659345,"owners_count":21141118,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-26T06:09:16.094Z","updated_at":"2025-04-13T03:29:15.759Z","avatar_url":"https://github.com/libreform.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# WPLF Export\n[![License](http://img.shields.io/:license-gpl3-blue.svg)](http://www.gnu.org/licenses/gpl-3.0.html)\n\nExport form submissions created by WP Libre Form.\n\nThis builds on a \"new\" feature added in WP 4.7 called bulk actions, and basically adds a new item to the bulk action menu.\n\n## Installation\n\n### The Composer Way (preferred)\n\nInstall the plugin via [Composer](https://getcomposer.org/)\n```\ncomposer require k1sul1/wplf-export\n```\n\n# How to use\n\nSeriously? Select your forms, select Export from bulk action menu and press \"Apply\".\nFor best results, select only one type of form for export.\n\n![for dummies](assets/screenshot-1.png)\n\n# Customizing your export\n\nYou can add your own filters to be applied on all or invidual forms and get only the output you'll need.\nNote that invidual form filters work only when you spesify a form using the \"Filter by form\" field.\n\nFilter fields:\n\n```\nadd_filter('wplf_export_form_filter', function($filter_fn) {\n  // Note that we're replacing $filter_fn entirely. Return a function!\n  $fn = function($field_name) {\n    return $field_name !== 'block_this_field';\n  };\n\n  return $fn;\n});\n\nadd_filter('wplf_export_form_84_filter', function($filter_fn) {\n  // Same thing.\n});\n```\n\nChange delimiter (default: ','):\n\n```\nadd_filter('wplf_export_form_delimiter', function($delimiter) {\n  return '#';\n});\n\nadd_filter('wplf_export_form_84_delimiter', function($delimiter) {\n  return '#';\n});\n\n```\n\nChange filename (default: wplf_export_TIMESTAMP.csv):\n\n`add_filter('wplf_export_form_{ID}_filename', ..);`\n\n\nNew filters and features are subject to be added. PRs welcome!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flibreform%2Fexport","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flibreform%2Fexport","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flibreform%2Fexport/lists"}