1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
<?php /** * WooCommerce Importer Interface * * @package WooCommerce\Interface * @version 3.1.0 */
/** * WC_Importer_Interface class. */ interface WC_Importer_Interface {
/** * Process importation. * Returns an array with the imported and failed items. * 'imported' contains a list of IDs. * 'failed' contains a list of WP_Error objects. * * Example: * ['imported' => [], 'failed' => []] * * @return array */ public function import();
/** * Get file raw keys. * * CSV - Headers. * XML - Element names. * JSON - Keys * * @return array */ public function get_raw_keys();
/** * Get file mapped headers. * * @return array */ public function get_mapped_keys();
/** * Get raw data. * * @return array */ public function get_raw_data();
/** * Get parsed data. * * @return array */ public function get_parsed_data();
/** * Get file pointer position from the last read. * * @return int */ public function get_file_position();
/** * Get file pointer position as a percentage of file size. * * @return int */ public function get_percent_complete(); }
|