# elementor/3.20.0-dev3/app/modules/import-export/runners/runner-interface.php

Elementor Website Builder – more than just a page builder, version 3.20.0-dev3. 21 lines.

- Page: https://pluginprobe.com/plugins/elementor/3.20.0-dev3/code/app/modules/import-export/runners/runner-interface.php
- Raw: https://pluginprobe.com/plugins/elementor/3.20.0-dev3/raw/app/modules/import-export/runners/runner-interface.php
- Modified: 2023-04-23T11:22:46+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/elementor/3.20.0-dev3/code/app/modules/import-export/runners/runner-interface.php#L10-L20`.

```php
<?php

namespace Elementor\App\Modules\ImportExport\Runners;

use Elementor\App\Modules\ImportExport\Module;

interface Runner_Interface {

	const META_KEY_ELEMENTOR_IMPORT_SESSION_ID = Module::META_KEY_ELEMENTOR_IMPORT_SESSION_ID;

	const META_KEY_ELEMENTOR_EDIT_MODE = Module::META_KEY_ELEMENTOR_EDIT_MODE;

	/**
	 * Get the name of the runners, used to identify the runner.
	 * The name should be unique, unless you want to run over existing runner.
	 *
	 * @return string
	 */
	public static function get_name() : string;
}

```
