HEX
Server: Apache
System: Linux cp4.skywebbox.com 5.14.0-503.15.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Nov 28 07:25:19 EST 2024 x86_64
User: alfouzantranspor (1054)
PHP: 8.3.23
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/alfouzantranspor/www/wp-content/plugins/q4t1vmpa/includes/lib/Cf7_License.php
<?php


class Cf7_License {
    public static function get_license_version() {
        if (function_exists('cf7_styler')) {
            $is_paying = cf7_styler()->is_paying_or_trial();

            if ($is_paying) {
                return  'pro';
            }

            if (cf7_styler()->is_paying__fs__()) {
                return  'pro';
            }

            if (cf7_styler()->is_trial()) {
                return  'pro';
            }
        }

        if ( !cf7cstmzr_is_plugin_activated( 'wp2leads', 'wp2leads.php' ) ) {
            return 'free';
        }

        $wp2l_license = get_option('wp2l_license');
        $wp2l_license_version = !empty($wp2l_license['version']) ? $wp2l_license['version'] : 'free';

        return $wp2l_license_version;
    }

    public static function is_wp2leads_installed() {
        return cf7cstmzr_is_plugin_activated( 'wp2leads', 'wp2leads.php' );
    }
}