Server IP : 104.21.38.3 / Your IP : 172.70.188.150 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/lapma.in/wp-content/plugins/everest-forms/includes/ |
Upload File : |
<?php /** * EverestForms features * * @package EverestForms\Admin * @since 1.2.0 */ defined( 'ABSPATH' ) || exit; /** * Features Class. */ class EVF_Forms_Features { /** * Constructor. */ public function __construct() { add_filter( 'everest_forms_fields', array( $this, 'form_fields' ) ); } /** * Load additional fields available in the Pro version. * * @param array $fields Registered form fields. * @return array */ public function form_fields( $fields ) { $pro_fields = array( 'EVF_Field_Image_Upload', 'EVF_Field_Hidden', 'EVF_Field_Phone', 'EVF_Field_Password', 'EVF_Field_HTML', 'EVF_Field_Divider', 'EVF_Field_Title', 'EVF_Field_Signature', 'EVF_Field_Address', 'EVF_Field_Country', 'EVF_Field_Range_Slider', 'EVF_Field_Privacy_Policy', 'EVF_Field_Captcha', 'EVF_Field_Repeater', 'EVF_Field_Wysiwyg', 'EVF_Field_Progress', 'EVF_Field_Payment_Single', 'EVF_Field_Payment_Radio', 'EVF_Field_Payment_Checkbox', 'EVF_Field_Payment_Quantity', 'EVF_Field_Payment_Total', 'EVF_Field_Payment_Subtotal', 'EVF_Field_Payment_Coupon', 'EVF_Field_Payment_Square', 'EVF_Field_Payment_Subscription_Plan', 'EVF_Field_Credit_Card', 'EVF_Field_Payment_Authorize_Net', 'EVF_Field_Rating', 'EVF_Field_Likert', 'EVF_Field_Scale_Rating', 'EVF_Field_Yes_No', 'EVF_Field_Color', 'EVF_Field_Reset', 'EVF_Field_Lookup', ); return array_merge( $fields, $pro_fields ); } } new EVF_Forms_Features();