mirror of
https://github.com/proelements/proelements.git
synced 2026-04-05 20:13:47 +00:00
v3.34.0
This commit is contained in:
@@ -108,28 +108,35 @@ class API {
|
||||
$license_data['success'] = true;
|
||||
$license_data['expires'] = 'lifetime';
|
||||
$license_data['features'] = [
|
||||
'custom-attributes',
|
||||
'custom_code',
|
||||
'custom-css',
|
||||
'global-css',
|
||||
'display-conditions',
|
||||
'dynamic-tags-acf',
|
||||
'dynamic-tags-pods',
|
||||
'dynamic-tags-toolset',
|
||||
'element-manager-permissions',
|
||||
'global-widget',
|
||||
'editor_comments',
|
||||
'stripe-button',
|
||||
'popup',
|
||||
'role-manager',
|
||||
'woocommerce-menu-cart',
|
||||
'product-single',
|
||||
'product-archive',
|
||||
'settings-woocommerce-pages',
|
||||
'settings-woocommerce-notices',
|
||||
'dynamic-tags-wc',
|
||||
'settings-woocommerce-pages',
|
||||
'settings-woocommerce-notices'];
|
||||
'custom-attributes',
|
||||
'custom_code',
|
||||
'custom-css',
|
||||
'global-css',
|
||||
'display-conditions',
|
||||
'dynamic-tags-acf',
|
||||
'dynamic-tags-pods',
|
||||
'dynamic-tags-toolset',
|
||||
'element-manager-permissions',
|
||||
'global-widget',
|
||||
'editor_comments',
|
||||
'stripe-button',
|
||||
'popup',
|
||||
'role-manager',
|
||||
'woocommerce-menu-cart',
|
||||
'product-single',
|
||||
'product-archive',
|
||||
'settings-woocommerce-pages',
|
||||
'settings-woocommerce-notices',
|
||||
'dynamic-tags-wc',
|
||||
'atomic-custom-attributes',
|
||||
'theme-builder',
|
||||
'form-submissions',
|
||||
'akismet',
|
||||
'activity-log',
|
||||
'cf7db',
|
||||
'transitions',
|
||||
'size-variable'
|
||||
];
|
||||
return $license_data;
|
||||
}
|
||||
|
||||
|
||||
@@ -15,5 +15,6 @@ class Controller extends Base_Controller {
|
||||
|
||||
protected function register_endpoints() {
|
||||
$this->register_endpoint( Endpoints\Get_Tier_Features::class );
|
||||
$this->register_endpoint( Endpoints\Get_License_Status::class );
|
||||
}
|
||||
}
|
||||
|
||||
48
license/data/endpoints/get-license-status.php
Normal file
48
license/data/endpoints/get-license-status.php
Normal file
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
namespace ElementorPro\License\Data\Endpoints;
|
||||
|
||||
use ElementorPro\Core\Data\Endpoints\Base;
|
||||
use ElementorPro\Core\Data\Interfaces\Endpoint;
|
||||
use ElementorPro\License\API;
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit; // Exit if accessed directly.
|
||||
}
|
||||
|
||||
class Get_License_Status extends Base implements Endpoint {
|
||||
|
||||
public function get_name(): string {
|
||||
return 'get-license-status';
|
||||
}
|
||||
|
||||
public function get_route(): string {
|
||||
return 'get-license-status';
|
||||
}
|
||||
|
||||
protected function register() {
|
||||
register_rest_route(
|
||||
$this->controller->get_namespace(),
|
||||
'/' . $this->controller->get_name() . '/' . $this->get_route(),
|
||||
[
|
||||
[
|
||||
'methods' => 'GET',
|
||||
'callback' => [ $this, 'get_status' ],
|
||||
'permission_callback' => [ $this, 'permission_callback' ],
|
||||
],
|
||||
]
|
||||
);
|
||||
}
|
||||
|
||||
public function get_status( $request ) {
|
||||
return new \WP_REST_Response(
|
||||
[
|
||||
'isExpired' => API::is_license_expired(),
|
||||
],
|
||||
200
|
||||
);
|
||||
}
|
||||
|
||||
public function permission_callback( $request ) {
|
||||
return is_user_logged_in();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user