Current Path: > home > codekrsu > > ameliagraphics.com > wp-content > plugins > forminator > library > > fields
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 |
---|---|---|---|---|
address.php | File | 27845 bytes | July 14 2025 15:42:34. | |
calculation.php | File | 8270 bytes | March 03 2025 16:08:12. | |
captcha.php | File | 9379 bytes | April 14 2025 14:55:34. | |
consent.php | File | 6209 bytes | July 14 2025 15:42:34. | |
currency.php | File | 13254 bytes | July 14 2025 15:42:34. | |
custom.php | File | 7305 bytes | March 03 2025 16:08:12. | |
date.php | File | 45471 bytes | July 14 2025 15:42:34. | |
email.php | File | 14373 bytes | July 14 2025 15:42:34. | |
gdprcheckbox.php | File | 5432 bytes | July 14 2025 15:42:34. | |
group.php | File | 7233 bytes | July 14 2025 15:42:34. | |
hidden.php | File | 5010 bytes | April 14 2025 14:55:34. | |
html.php | File | 2470 bytes | July 14 2025 15:42:34. | |
multivalue.php | File | 16995 bytes | July 14 2025 15:42:34. | |
name.php | File | 22554 bytes | July 14 2025 15:42:34. | |
number.php | File | 13488 bytes | July 14 2025 15:42:34. | |
page-break.php | File | 1514 bytes | December 24 2024 20:31:58. | |
password.php | File | 18982 bytes | July 14 2025 15:42:34. | |
paypal.php | File | 13706 bytes | December 24 2024 20:31:58. | |
phone.php | File | 15768 bytes | July 14 2025 15:42:34. | |
postdata.php | File | 36756 bytes | July 14 2025 15:42:34. | |
radio.php | File | 17476 bytes | July 14 2025 15:42:34. | |
rating.php | File | 5749 bytes | July 14 2025 15:42:34. | |
section.php | File | 3194 bytes | December 24 2024 20:31:58. | |
select.php | File | 23804 bytes | July 14 2025 15:42:34. | |
slider.php | File | 14350 bytes | July 14 2025 15:42:34. | |
stripe-payment-element.php | File | 4076 bytes | April 14 2025 14:55:34. | |
stripe.php | File | 46882 bytes | April 16 2025 18:18:24. | |
text.php | File | 11490 bytes | July 14 2025 15:42:34. | |
textarea.php | File | 11887 bytes | July 14 2025 15:42:34. | |
time.php | File | 29459 bytes | July 14 2025 15:42:34. | |
upload.php | File | 34058 bytes | July 14 2025 15:42:34. | |
website.php | File | 8324 bytes | July 14 2025 15:42:34. |
<?php /** * The Forminator_Hidden class. * * @package Forminator */ if ( ! defined( 'ABSPATH' ) ) { die(); } /** * Class Forminator_Hidden * * @since 1.0 */ class Forminator_Hidden extends Forminator_Field { /** * Name * * @var string */ public $name = ''; /** * Slug * * @var string */ public $slug = 'hidden'; /** * Type * * @var string */ public $type = 'hidden'; /** * Position * * @var int */ public $position = 19; /** * Options * * @var array */ public $options = array(); /** * Hide advanced * * @var string */ public $hide_advanced = 'true'; /** * Icon * * @var string */ public $icon = 'sui-icon-eye-hide'; /** * Forminator_Hidden constructor. * * @since 1.0 */ public function __construct() { parent::__construct(); $this->name = esc_html__( 'Hidden Field', 'forminator' ); } /** * Field defaults * * @since 1.0 * @return array */ public function defaults() { return array( 'field_label' => '', 'default_value' => 'user_ip', ); } /** * Autofill Setting * * @since 1.0.5 * * @param array $settings Settings. * * @return array */ public function autofill_settings( $settings = array() ) { // Unsupported Autofill. $autofill_settings = array(); return $autofill_settings; } /** * Field front-end markup * * @since 1.0 * @param array $field Field. * @param Forminator_Render_Form $views_obj Forminator_Render_Form object. * * @return mixed */ public function markup( $field, $views_obj ) { $id = self::get_property( 'element_id', $field ); $name = $id; $value = esc_html( $this->get_value( $field, true ) ); return sprintf( '<input type="hidden" id="%s" name="%s" value="%s" />', $id . '_' . Forminator_CForm_Front::$uid, $name, $value ); } /** * Return replaced value * * @since 1.0 * @since 1.5 add user_id value getter * @param array $field Field. * @param boolean $is_markup For front-end markup. * * @return mixed|string */ public function get_value( $field, $is_markup = false ) { $value = ''; $saved_value = self::get_property( 'default_value', $field ); $embed_url = forminator_get_current_url(); switch ( $saved_value ) { case 'embed_id': $value = forminator_get_post_data( 'ID' ); break; case 'embed_title': $value = forminator_get_post_data( 'post_title' ); break; case 'refer_url': if ( true === $is_markup ) { $value = forminator_get_referer_url( $embed_url ); } else { $element_id = self::get_property( 'element_id', $field ); $post_value = self::get_post_data( $element_id ); $value = empty( $post_value ) ? $embed_url : $this->sanitize( $field, $post_value ); } break; case 'submission_id': $value = 'submission_id'; break; case 'custom_value': $value = self::get_property( 'custom_value', $field ); break; case 'query': $value = $this->replace_prefill( $field ); break; default: $placeholder = '{' . $saved_value . '}'; $placeholder_value = forminator_replace_variables( $placeholder ); if ( $placeholder_value !== $placeholder ) { $value = $placeholder_value; } break; } return apply_filters( 'forminator_field_hidden_field_value', $value, $saved_value, $field, $this ); } /** * Get prefill value * * @since 1.10 * * @param array $field Field. * @return mixed|string */ public function replace_prefill( $field ) { $value = ''; if ( $this->has_prefill( $field ) ) { // We have pre-fill parameter, use its value or $value. $value = $this->get_prefill( $field, $value ); } return $value; } /** * Get calculable value * * @param string $submitted_field_data Submitted data. * @param array $field_settings Field settings. * @return string */ public static function get_calculable_value( $submitted_field_data, $field_settings ) { $calculable_value = $submitted_field_data; /** * Filter formula being used on calculable value on hidden field * * @param float $calculable_value * @param array $submitted_field_data * @param array $field_settings * * @return string|int|float */ $calculable_value = apply_filters( 'forminator_field_hidden_calculable_value', $calculable_value, $submitted_field_data, $field_settings ); return $calculable_value; } /** * Sanitize data * * @since 1.0.2 * * @param array $field Field. * @param array|string $data - the data to be sanitized. * * @return array|string $data - the data after sanitization */ public function sanitize( $field, $data ) { $original_data = $data; // Sanitize. if ( in_array( $field['default_value'], array( 'refer_url', 'embed_url' ), true ) ) { $data = urldecode_deep( $data ); } $data = forminator_sanitize_field( $data ); return apply_filters( 'forminator_field_hidden_sanitize', $data, $field, $original_data ); } }
SILENT KILLER Tool