Server IP : 104.21.38.3 / Your IP : 172.70.142.47 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/wwwroot/audiomatrix.in/wp-content/plugins/lead-form-builder/ |
Upload File : |
<?php /* Plugin Name: Lead Form Builder Description: Lead Form Builder Plugin is a contact form builder as well as lead generator. This contact form is compatible with all page builders like Elementor, Brizy, SiteOrigin, Gutenburg etc. Plugin comes with nearly all field options required to create Contact form, Registration form, News letter and contain Ajax based drag & drop field ordering. <a href="https://themehunk.com/plugins/" target="_blank">Get more plugins for your website on <strong>ThemeHunk</strong></a> Version: 1.8.6 Author: ThemeHunk Text Domain: lead-form-builder Author URI: http://www.themehunk.com/ */ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly // Version constant for easy CSS refreshes if (!function_exists('lfb_plugin_action_links')){ define('LFB_VER', '1.8.6'); define('LFB_PLUGIN_URL', plugin_dir_url(__FILE__)); include_once(plugin_dir_path(__FILE__) . 'inc/themehunk-menu/admin-menu.php'); include_once( plugin_dir_path(__FILE__) . 'inc/lfb-constant.php' ); /** * Add the settings link to the Lead Form Plugin plugin row * * @param array $links - Links for the plugin * @return array - Links */ function lfb_plugin_action_links($links){ $settings_page = add_query_arg(array('page' => 'wplf-plugin-menu'), admin_url('/admin.php?')); $settings_link = '<a href="'.esc_url($settings_page).'">'.__('Settings', 'lead-form-builder' ).'</a>'; array_unshift($links, $settings_link); return $links; } add_filter('plugin_action_links_'.plugin_basename(__FILE__), 'lfb_plugin_action_links', 10, 1); add_filter('plugin_row_meta', 'lfb_plugin_meta_links', 10, 2); /** * Add links to plugin's description in plugins table * * @param array $links Initial list of links. * @param string $file Basename of current plugin. * * @return array */ if ( ! function_exists( 'lfb_plugin_meta_links' ) ){ function lfb_plugin_meta_links($links, $file){ if ($file !== plugin_basename(__FILE__)) { return $links; } $demo_link = '<a target="_blank" href="https://wpthemes.themehunk.com/lead-form-builder-pro/" title="' . __('Live Demo', 'lead-form-builder') . '"><span class="dashicons dashicons-laptop"></span>' . __('Live Demo', 'lead-form-builder') . '</a>'; $doc_link = '<a target="_blank" href="https://themehunk.com/docs/lead-form/" title="' . __('Documentation', 'lead-form-builder') . '"><span class="dashicons dashicons-search"></span>' . __('Documentation', 'lead-form-builder') . '</a>'; $support_link = '<a target="_blank" href="https://themehunk.com/contact-us/" title="' . __('Support', 'lead-form-builder') . '"><span class="dashicons dashicons-admin-users"></span>' . __('Support', 'lead-form-builder') . '</a>'; $pro_link = '<a target="_blank" href="https://themehunk.com/product/lead-form-builder-pro/" title="' . __('Premium Version', 'lead-form-builder') . '"><span class="dashicons dashicons-cart"></span>' . __('Premium Version', 'lead-form-builder') . '</a>'; $links[] = $demo_link; $links[] = $doc_link; $links[] = $support_link; $links[] = $pro_link; return $links; } // plugin_meta_links } include_once( plugin_dir_path(__FILE__) . 'inc/lf-db.php' ); register_activation_hook(__FILE__, 'lfb_plugin_activate'); if(!function_exists('lfb_include_file')) { function lfb_include_file(){ include_once( plugin_dir_path(__FILE__) . 'inc/inc.php' ); } add_action('init','lfb_include_file'); } include_once( plugin_dir_path(__FILE__) . 'inc/lfb-widget.php' ); include_once( plugin_dir_path(__FILE__) . 'elementor/lfb-addon-elementor.php' ); // show notify include_once( plugin_dir_path(__FILE__) . 'notify/notify.php' ); }