| Server IP : 104.21.21.239 / Your IP : 216.73.217.139 Web Server : Apache/2.4.68 (Amazon Linux) OpenSSL/3.5.5 System : Linux ip-172-31-69-123.ec2.internal 6.1.176-223.369.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Jul 24 13:34:27 UTC 2026 x86_64 User : ec2-user ( 1000) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/etdchicago/wp-content/plugins123/elementor-pro/base/ |
Upload File : |
<?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() {
$license_data = License_API::get_license_data();
return in_array( $license_data['license'], [ License_API::STATUS_VALID, License_API::STATUS_EXPIRED ] );
}
public function get_categories() {
return [ 'pro-elements' ];
}
public function get_widget_css_config( $widget_name ) {
$direction = is_rtl() ? '-rtl' : '';
$css_file_path = 'css/widget-' . $widget_name . $direction . '.min.css';
return [
'key' => $widget_name,
'version' => ELEMENTOR_PRO_VERSION,
'file_path' => ELEMENTOR_PRO_ASSETS_PATH . $css_file_path,
'data' => [
'file_url' => ELEMENTOR_PRO_ASSETS_URL . $css_file_path,
],
];
}
// TODO: Remove this method when the minimum core version is 3.3.1.
public function get_css_config() {
return $this->get_widget_css_config( $this->get_group_name() );
}
}