![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /proc/self/cwd/wp-content/plugins/elementor/app/modules/import-export/runners/ |
<?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; }