Files
proelements/base/editor-one-trait.php
proelements b499583e5a v3.35.0
2026-02-16 11:44:35 +02:00

17 lines
270 B
PHP

<?php
namespace ElementorPro\Base;
use ElementorPro\Plugin;
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
trait Editor_One_Trait {
protected function is_editor_one_active(): bool {
return (bool) Plugin::elementor()->modules_manager->get_modules( 'editor-one' );
}
}