Server : Apache System : Linux server.lienzindia.com 4.18.0-348.7.1.el8_5.x86_64 #1 SMP Wed Dec 22 13:25:12 UTC 2021 x86_64 User : plutus ( 1007) PHP Version : 7.4.33 Disable Function : NONE Directory : /home/plutus/public_html/wp-content/plugins/mkalpbmu/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' ); } }