PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins
/
woocommerce
/
packages
/
woocommerce-admin
/
src
/
API
/
Reports
<?php /** * Reports Exportable Controller Interface * * @package WooCommerce Admin/Interface */ namespace Automattic\WooCommerce\Admin\API\Reports; if ( ! defined( 'ABSPATH' ) ) { exit; } /** * WooCommerce Reports exportable controller interface. * * @since 3.5.0 */ interface ExportableInterface { /** * Get the column names for export. * * @return array Key value pair of Column ID => Label. */ public function get_export_columns(); /** * Get the column values for export. * * @param array $item Single report item/row. * @return array Key value pair of Column ID => Value. */ public function prepare_item_for_export( $item ); }
[+]
..
[+]
Products
[-] Query.php
[edit]
[-] Segmenter.php
[edit]
[+]
Downloads
[-] Controller.php
[edit]
[+]
Revenue
[-] DataStore.php
[edit]
[+]
Variations
[-] Cache.php
[edit]
[+]
PerformanceIndicators
[-] ExportableTraits.php
[edit]
[+]
Taxes
[-] SqlQuery.php
[edit]
[-] ExportableInterface.php
[edit]
[-] DataStoreInterface.php
[edit]
[-] TimeInterval.php
[edit]
[+]
Categories
[+]
Export
[+]
Customers
[+]
Stock
[+]
Coupons
[+]
Orders
[+]
Import
[-] ParameterException.php
[edit]