????

Your IP : 3.141.85.245


Current Path : /proc/thread-self/cwd/wp-content/plugins/elementor-pro/base/
Upload File :
Current File : //proc/thread-self/cwd/wp-content/plugins/elementor-pro/base/base-widget-trait.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 true;
		return License_API::is_license_active();
	}

	public function get_categories() {
		return [ 'pro-elements' ];
	}
}