PluginProbe
Import WP – CSV & XML Import Export for WordPress / trunk
Import WP – CSV & XML Import Export for WordPress vtrunk
2.14.24 2.14.23 2.7.0 2.7.1 2.7.10 2.7.11 2.7.12 2.7.13 2.7.14 2.7.2 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 2.7.8 2.7.9 2.8.0 2.8.1 2.8.2 2.8.3 2.9.0 2.9.1 trunk 0.1.6 All 142 releases
jc-importer / class / Common / Importer / ConfigInterface.php

ConfigInterface.php in Import WP – CSV & XML Import Export for WordPress trunk, at class/Common/Importer/ConfigInterface.php

45 lines 715 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace ImportWP\Common\Importer;
4
5 interface ConfigInterface
6 {
7 /**
8 * Get setting
9 *
10 * @param $key
11 *
12 * @return mixed
13 */
14 public function get($key);
15
16 /**
17 * Set setting
18 *
19 * @param $key
20 * @param $data
21 *
22 * @return mixed
23 */
24 public function set($key, $data);
25
26 /**
27 * Get data to import
28 *
29 * @return array
30 */
31 public function getData();
32
33 public function getIndex($key, $record);
34
35 public function setIndex($key, $record, $start, $end);
36
37 public function readIndexes($key);
38
39 public function storeIndexes($key);
40
41 public function getRecordCount($key);
42
43 public function getIndexFile($key);
44 }
45