PluginProbe
Elementor Website Builder – more than just a page builder / 3.30.1
Elementor Website Builder – more than just a page builder v3.30.1
4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 4.0.7 All 451 releases
elementor / modules / cloud-kit-library / data / endpoints / eligibility.php

eligibility.php in Elementor Website Builder – more than just a page builder 3.30.1, at modules/cloud-kit-library/data/endpoints/eligibility.php

28 lines 611 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace Elementor\Modules\CloudKitLibrary\Data\Endpoints;
3
4 use Elementor\Modules\CloudKitLibrary\Data\Controller;
5 use Elementor\Modules\CloudKitLibrary\Module as CloudKitLibrary;
6 use Elementor\Data\V2\Base\Endpoint;
7
8 if ( ! defined( 'ABSPATH' ) ) {
9 exit; // Exit if accessed directly.
10 }
11
12 /**
13 * @property Controller $controller
14 */
15 class Eligibility extends Endpoint {
16 public function get_name() {
17 return 'eligibility';
18 }
19
20 public function get_format() {
21 return 'cloud-kits/eligibility';
22 }
23
24 public function get_items( $request ) {
25 return CloudKitLibrary::get_app()->check_eligibility();
26 }
27 }
28