|
Server : Apache System : Linux s1230 5.15.0-139-generic #149~20.04.1 SMP Tue Jul 14 11:21:49 UTC 2026 x86_64 User : p141464 ( 418825) PHP Version : 7.4.33.12 Disable Function : NONE Directory : /home/www/p141464/html/KMU-CSR-PLANER/wp-content/plugins/preuf/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' );
}
}