Server IP : 192.64.118.117 / Your IP : 13.58.76.154 Web Server : LiteSpeed System : Linux premium56.web-hosting.com 4.18.0-513.24.1.lve.1.el8.x86_64 #1 SMP Thu May 9 15:10:09 UTC 2024 x86_64 User : thecgapy ( 1160) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/thecgapy/mobilecreationz.com/wp-content/plugins/leads/shared/classes/ |
Upload File : |
<?php if (!function_exists('inboundnow_add_master_license') && !defined('INBOUND_ACCESS_LEVEL') ) { /* Add Master License Key Setting*/ add_filter('lp_define_global_settings', 'inboundnow_add_master_license', 1, 1); add_filter('wpleads_define_global_settings', 'inboundnow_add_master_license', 1, 1); add_filter('wp_cta_define_global_settings', 'inboundnow_add_master_license', 1, 1); function inboundnow_add_master_license($global_settings) { $key = ''; switch(current_filter()) { case 'lp_define_global_settings': $key = 'lp-license-keys'; break; case 'wpleads_define_global_settings': $key = 'wpleads-license-keys'; break; case 'wp_cta_define_global_settings': $key = 'wp-cta-license-keys'; break; } $global_settings[$key]['settings']['master-key'] = array( 'id' => 'extensions-license-keys-master-key-header', 'description' => __( "Head to http://www.inboundnow.com/ to retrieve your extension-ready license key.", 'inbound-pro' ), 'type' => 'header', 'default' => '<h3 class="lp_global_settings_header">'. __( 'InboundNow Master Key', 'inbound-pro' ) .'</h3>' ); $global_settings[$key]['settings']['master-key'] = array( 'id' => 'inboundnow_master_license_key', 'option_name' => 'inboundnow_master_license_key', 'label' => __('Inbound Now API Key', 'inbound-pro' ), 'description' => __( "Head to http://www.inboundnow.com/account to retrieve your extension-ready license key.", 'inbound-pro' ), 'type' => 'text', 'default' => '' ); return $global_settings; } }