Files
Roman Pyrih 755af5f0b0 first commit
2026-03-03 13:20:21 +01: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' );
}
}