| Server IP : 213.186.33.2 / Your IP : 216.73.216.39 Web Server : Apache System : Linux webm005.cluster102.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : symetry ( 21728) PHP Version : 8.2.31 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/symetry/www/wp-content/plugins/3cxl04vx/includes/lib/ |
Upload File : |
<?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' );
}
}