File "class-wc-importer-interface.php"

Full path: /home/kosmetik/public_html/wp-content/plugins/woocommerce/includes/interfaces/class-wc-importer-interface.php
File size: 307 B
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

<?php

interface WC_Importer_Interface
{
    public function import();
    public function get_raw_keys();
    public function get_mapped_keys();
    public function get_raw_data();
    public function get_parsed_data();
    public function get_file_position();
    public function get_percent_complete();
}