# jc-importer/trunk/class/Common/Importer/ParserInterface.php

Import WP – CSV &amp; XML Import Export for WordPress, version trunk. 30 lines.

- Page: https://pluginprobe.com/plugins/jc-importer/trunk/code/class/Common/Importer/ParserInterface.php
- Raw: https://pluginprobe.com/plugins/jc-importer/trunk/raw/class/Common/Importer/ParserInterface.php
- Modified: 2022-12-12T22:53:08+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/trunk/code/class/Common/Importer/ParserInterface.php#L10-L20`.

```php
<?php

namespace ImportWP\Common\Importer;

interface ParserInterface
{

    /**
     * @return FileInterface
     */
    public function file();

    /**
     * Set record to parse
     *
     * @param $record_index
     *
     * @return ParserInterface
     */
    public function getRecord($record_index);

    public function getRecordIndex();

    public function query($query);

    public function queryGroup($group);

    public function query_string($query);
}

```
