frozzare / wc-export
Export various data from WooCommerce
Installs: 18
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 0
Open Issues: 0
Type:wordpress-plugin
Requires
- php: ^5.5.9 || ^7.0
Requires (Dev)
- frozzare/wp-test-suite: ~1.0
- wp-coding-standards/wpcs: dev-develop
This package is auto-updated.
Last update: 2024-10-29 04:53:04 UTC
README
Export various data from WooCommerce.
The plugin cames with two exporters, a customers export that will export all billing fields and a emails exporter that will export the billing email field from a order.
The are three writers built in, CSV, XML and JSON.
Installation
composer require frozzare/wc-export
Documentation
Custom export
Example of a custom export type that will export the billing_email
field from a order. With query_args
method you can modify the WP_Query
arguments.
<?php use Frozzare\WooCommerce\Export\Exports\Export; class Custom_Emails extends Export { /** * Get fields that should be exported. * * @return array */ public function get_fields() { return [ 'billing_email' => __( 'Email', 'woocommerce' ) ]; } /** * Modify WP Query args. * * @param array $args * * @return array */ public function query_args( array $args ) { return $args; } }
Then you have to add the custom export to the exporter list with wc_export_classes
filter.
<?php /** * Add export classes. * * @param array $exports * * @return array */ add_filter( 'wc_export_classes', function ( array $exports ) { return array_merge( $exports, [ 'Custom emails' => '\\Custom_Emails' ] ); } );
Custom writer
Example of a custom export writer that will export the given data argument to render
method as JSON.
<?php use Frozzare\WooCommerce\Export\Writers\Writer; class Custom_JSON extends Writer { /** * Get the content type. * * @var string */ protected function get_content_type() { return 'application/json'; } /** * Get the file extension. * * @var string */ protected function get_extension() { return 'json'; } /** * Render JSON file. * * @param array $data */ protected function render( array $data ) { foreach ( $data as $index => $row ) { if ( ! is_array( $row ) ) { unset( $data[$index] ); } } echo json_encode( $data, JSON_UNESCAPED_UNICODE ); } }
Then you have to add the custom writer to the writers list with wc_export_writers
filter.
<?php /** * Add export writer. * * @param array $writers * * @return array */ add_filter( 'wc_export_writers', function ( array $writers ) { return array_merge( $writers, [ 'Custom JSON' => '\\Custom_JSON' ] ); } );
License
MIT © Fredrik Forsmo