| Server IP : 62.60.133.156 / Your IP : 216.73.217.51 Web Server : LiteSpeed System : Linux linux24.centraldnserver.com 4.18.0-553.141.2.lve.el8.x86_64 #1 SMP Wed Jul 8 16:10:02 UTC 2026 x86_64 User : mimradmin ( 1166) PHP Version : 7.4.33 Disable Function : show_source, system, shell_exec, passthru, exec, popen, proc_open MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/cwd/wp-content/plugins/elementor-off/modules/components/ |
Upload File : |
<?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();
}
}