# elementor/3.35.0-dev2/modules/cloud-kit-library/data/endpoints/eligibility.php

Elementor Website Builder – more than just a page builder, version 3.35.0-dev2. 28 lines.

- Page: https://pluginprobe.com/plugins/elementor/3.35.0-dev2/code/modules/cloud-kit-library/data/endpoints/eligibility.php
- Raw: https://pluginprobe.com/plugins/elementor/3.35.0-dev2/raw/modules/cloud-kit-library/data/endpoints/eligibility.php
- Modified: 2025-06-26T10:13:40+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/elementor/3.35.0-dev2/code/modules/cloud-kit-library/data/endpoints/eligibility.php#L10-L20`.

```php
<?php
namespace Elementor\Modules\CloudKitLibrary\Data\Endpoints;

use Elementor\Modules\CloudKitLibrary\Data\Controller;
use Elementor\Modules\CloudKitLibrary\Module as CloudKitLibrary;
use Elementor\Data\V2\Base\Endpoint;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * @property Controller $controller
 */
class Eligibility extends Endpoint {
	public function get_name() {
		return 'eligibility';
	}

	public function get_format() {
		return 'cloud-kits/eligibility';
	}

	public function get_items( $request ) {
		return CloudKitLibrary::get_app()->check_eligibility();
	}
}

```
