| 1234567891011121314151617181920 |
- <?php
- namespace ModulesGarden\Servers\ProxmoxCloudVps\App\Helpers;
- trait LicenseValidator
- {
- public function isLicensePayingFullAnnuallyPrice($force = false){
- if(!function_exists('ProxmoxCloudVps_GetLicenseData')){
- return true;
- }
- $licenseData = ProxmoxCloudVps_GetLicenseData($force);
- if(is_array($licenseData) && isset($licenseData['isPayingFullAnnuallyPrice']) && $licenseData['isPayingFullAnnuallyPrice'] !=1){
- return false;
- }
- return true;
- }
- }
|