Current Path: > home > codekrsu > > ameliagraphics.com > wp-content > plugins > wpforms-lite > > src > Helpers
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
CacheBase.php | File | 11010 bytes | July 31 2025 14:13:36. | |
Chain.php | File | 8504 bytes | September 26 2024 15:36:36. | |
Crypto.php | File | 2931 bytes | April 24 2025 14:53:30. | |
DB.php | File | 6753 bytes | September 26 2024 15:36:36. | |
File.php | File | 7813 bytes | September 26 2024 15:36:36. | |
Form.php | File | 1433 bytes | February 27 2025 17:40:00. | |
PluginSilentUpgrader.php | File | 23846 bytes | September 26 2024 15:36:36. | |
Templates.php | File | 6410 bytes | April 23 2024 14:43:10. | |
Transient.php | File | 7521 bytes | September 26 2024 15:36:36. |
<?php namespace WPForms\Helpers; /** * Form helpers. * * @since 1.9.4 */ class Form { /** * Get form pro-fields array. * * @since 1.9.4 * * @param array|mixed $form_data Form data. * * @return array Pro fields array. */ public static function get_form_pro_fields( $form_data ): array { $fields = $form_data['fields'] ?? []; $pro_fields = []; foreach ( $fields as $field_data ) { /** * Filter form pro fields array. * * @since 1.9.4 * * @param array $pro_fields Pro-fields data. * @param array $field_data Field data. */ $pro_fields = apply_filters( 'wpforms_helpers_form_pro_fields', $pro_fields, $field_data ); } return $pro_fields; } /** * Get form addons educational data. * * @since 1.9.4 * * @param array|mixed $form_data Form data. * * @return array The form addons educational data. */ public static function get_form_addons_edu_data( $form_data ): array { $fields = $form_data['fields'] ?? []; $addons_edu_data = []; foreach ( $fields as $field_data ) { /** * Filter the form addons educational data. * * @since 1.9.4 * * @param array $addons_edu_data The form addons educational data. * @param array $field_data Field data. */ $addons_edu_data = apply_filters( 'wpforms_helpers_form_addons_edu_data', $addons_edu_data, $field_data ); } return $addons_edu_data; } }
SILENT KILLER Tool