Update elementor pro

This commit is contained in:
2026-03-24 09:23:15 +01:00
parent ce2d93a202
commit 4c35d65901
559 changed files with 11981 additions and 19280 deletions

View File

@@ -6,6 +6,7 @@ use Elementor\Settings;
use Elementor\Utils;
use ElementorPro\Core\Utils as Pro_Utils;
use ElementorPro\Core\Connect\Apps\Activate;
use ElementorPro\License\Data\Controller;
use ElementorPro\License\Notices\Trial_Expired_Notice;
use ElementorPro\License\Notices\Trial_Period_Notice;
use ElementorPro\Plugin;
@@ -28,6 +29,10 @@ class Admin {
*/
public static $updater = null;
public function __construct() {
$this->register_rest_controller();
}
public static function get_errors_details() {
$license_page_link = self::get_url();
@@ -788,4 +793,8 @@ class Admin {
return wp_verify_nonce( $nonce, 'opt_out' );
}
private function register_rest_controller() {
new Controller();
}
}