| 1 |
<?php |
| 2 |
|
| 3 |
namespace Elementor\Modules\EditorOne; |
| 4 |
|
| 5 |
use Elementor\Core\Base\Module as BaseModule; |
| 6 |
use Elementor\Core\Experiments\Manager as Experiments_Manager; |
| 7 |
|
| 8 |
if ( ! defined( 'ABSPATH' ) ) { |
| 9 |
exit; |
| 10 |
} |
| 11 |
|
| 12 |
class Module extends BaseModule { |
| 13 |
|
| 14 |
const EXPERIMENT_NAME = 'e_editor_one'; |
| 15 |
|
| 16 |
public function get_name() { |
| 17 |
return 'editor-one'; |
| 18 |
} |
| 19 |
|
| 20 |
public static function get_experimental_data() { |
| 21 |
return [ |
| 22 |
'name' => static::EXPERIMENT_NAME, |
| 23 |
'title' => esc_html__( 'Editor one', 'elementor' ), |
| 24 |
'description' => esc_html__( 'General', 'elementor' ), |
| 25 |
'hidden' => true, |
| 26 |
'default' => Experiments_Manager::STATE_INACTIVE, |
| 27 |
'release_status' => Experiments_Manager::RELEASE_STATUS_DEV, |
| 28 |
]; |
| 29 |
} |
| 30 |
} |
| 31 |
|