mirror of
https://github.com/proelements/proelements.git
synced 2026-04-05 20:13:47 +00:00
21 lines
453 B
PHP
21 lines
453 B
PHP
<?php
|
|
namespace ElementorPro\License\Data;
|
|
|
|
use ElementorPro\Core\Data\Controller as Base_Controller;
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly
|
|
}
|
|
|
|
class Controller extends Base_Controller {
|
|
|
|
public function get_name() {
|
|
return 'license';
|
|
}
|
|
|
|
protected function register_endpoints() {
|
|
$this->register_endpoint( Endpoints\Get_Tier_Features::class );
|
|
$this->register_endpoint( Endpoints\Get_License_Status::class );
|
|
}
|
|
}
|