Files
brpp.pl/wp-content/plugins/elementor-pro/base/base-widget-trait.php
Roman Pyrih 97352dcdc9 first commit
2025-08-26 10:50:15 +02:00

19 lines
329 B
PHP

<?php
namespace ElementorPro\Base;
use ElementorPro\License\API as License_API;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
trait Base_Widget_Trait {
public function is_editable() {
return License_API::is_license_active();
}
public function get_categories() {
return [ 'pro-elements' ];
}
}