PHP 8.2.31
Preview: components-access-controller.php Size: 1.39 KB
/home/nshryvcy/radiantskinclinics.org/wp-content/plugins/elementor/modules/components/components-access-controller.php

<?php

namespace Elementor\Modules\Components;

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

class Components_Access_Controller {
	const TIER_CORE = 'core';
	const TIER_EXPIRED = 'expired';
	const TIER_PRO = 'pro';

	public static function get_access_tier(): string {
		if ( ! class_exists( '\ElementorPro\License\API' ) ) {
			return self::TIER_CORE;
		}

		if ( \ElementorPro\License\API::is_license_active() ) {
			return self::TIER_PRO;
		}

		if ( \ElementorPro\License\API::is_license_expired() ) {
			return self::TIER_EXPIRED;
		}

		return self::TIER_CORE;
	}

	public static function is_pro_tier(): bool {
		return self::TIER_PRO === self::get_access_tier();
	}

	public static function is_expired_or_pro_tier(): bool {
		$tier = self::get_access_tier();

		return self::TIER_EXPIRED === $tier || self::TIER_PRO === $tier;
	}

	public static function can_create(): bool {
		return self::is_pro_tier();
	}

	public static function can_delete(): bool {
		return self::is_pro_tier();
	}

	public static function can_rename(): bool {
		return self::is_pro_tier();
	}

	public static function can_publish(): bool {
		return self::is_expired_or_pro_tier();
	}

	public static function can_add_to_page(): bool {
		return self::is_pro_tier();
	}

	public static function can_edit(): bool {
		return self::is_expired_or_pro_tier();
	}

	public static function can_lock(): bool {
		return self::is_expired_or_pro_tier();
	}
}

Directory Contents

Dirs: 7 × Files: 10

Name Size Perms Modified Actions
documents DIR
- drwxr-xr-x 2026-06-10 02:40:26
Edit Download
- drwxr-xr-x 2026-06-10 02:40:26
Edit Download
- drwxr-xr-x 2026-06-10 02:40:26
Edit Download
styles DIR
- drwxr-xr-x 2026-06-10 02:40:26
Edit Download
- drwxr-xr-x 2026-06-10 02:40:26
Edit Download
utils DIR
- drwxr-xr-x 2026-06-10 02:40:26
Edit Download
widgets DIR
- drwxr-xr-x 2026-06-10 02:40:26
Edit Download
4.52 KB lrw-r--r-- 2026-02-02 14:52:12
Edit Download
3.61 KB lrw-r--r-- 2025-12-22 17:25:58
Edit Download
1.39 KB lrw-r--r-- 2026-03-30 13:49:26
Edit Download
5.76 KB lrw-r--r-- 2026-02-02 14:52:12
Edit Download
21.37 KB lrw-r--r-- 2026-04-13 19:21:04
Edit Download
4.50 KB lrw-r--r-- 2025-12-22 17:25:58
Edit Download
6.82 KB lrw-r--r-- 2026-05-20 16:19:28
Edit Download
2.59 KB lrw-r--r-- 2026-02-02 14:52:12
Edit Download
927 B lrw-r--r-- 2026-02-02 14:52:12
Edit Download
2.35 KB lrw-r--r-- 2026-02-02 14:52:12
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).