# jc-importer/2.8.3/class/Common/Exporter/MapperInterface.php

Import WP – CSV &amp; XML Import Export for WordPress, version 2.8.3. 15 lines.

- Page: https://pluginprobe.com/plugins/jc-importer/2.8.3/code/class/Common/Exporter/MapperInterface.php
- Raw: https://pluginprobe.com/plugins/jc-importer/2.8.3/raw/class/Common/Exporter/MapperInterface.php
- Modified: 2023-04-21T21:35:38+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/jc-importer/2.8.3/code/class/Common/Exporter/MapperInterface.php#L10-L20`.

```php
<?php

namespace ImportWP\Common\Exporter;

interface MapperInterface
{
    public function get_fields();
    public function have_records($exporter_id);
    public function found_records();
    public function get_records();
    public function set_records($records);
    public function set_filters($filters);
    public function setup($i);
}

```
