SILENT KILLERPanel

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 ]

Files and Folders in: /home/codekrsu//ameliagraphics.com/wp-content/plugins/forminator/library/fields/

NameTypeSizeLast ModifiedActions
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.

Reading File: /home/codekrsu//ameliagraphics.com/wp-content/plugins/forminator/library/fields//custom.php

<?php
/**
 * The Forminator_Custom class.
 *
 * @package Forminator
 */

if ( ! defined( 'ABSPATH' ) ) {
	die();
}

/**
 * Class Forminator_Custom
 *
 * @since 1.0
 */
class Forminator_Custom extends Forminator_Field {

	/**
	 * Name
	 *
	 * @var string
	 */
	public $name = '';

	/**
	 * Slug
	 *
	 * @var string
	 */
	public $slug = 'custom';

	/**
	 * Type
	 *
	 * @var string
	 */
	public $type = 'custom';

	/**
	 * Options
	 *
	 * @var array
	 */
	public $options = array();

	/**
	 * Category
	 *
	 * @var string
	 */
	public $category = '';

	/**
	 * Category
	 *
	 * @var string
	 */
	// public $category = 'posts';.
	// Disable for now until we know what to do with this.

	/**
	 * Forminator_Custom constructor.
	 *
	 * @since 1.0
	 */
	public function __construct() {
		parent::__construct();

		$this->name = esc_html__( 'Custom Field', 'forminator' );
	}

	/**
	 * Load settings
	 *
	 * @param array $settings Settings.
	 *
	 * @return array
	 */
	public function load_settings( $settings = array() ) {
		return array(
			array(
				'id'         => 'required',
				'type'       => 'Toggle',
				'name'       => 'required',
				'className'  => 'required-field',
				'hide_label' => true,
				'values'     => array(
					array(
						'value'      => 'true',
						'label'      => esc_html__( 'Required', 'forminator' ),
						'labelSmall' => 'true',
					),
				),
			),

			array(
				'id'         => 'separator-1',
				'type'       => 'Separator',
				'hide_label' => true,
			),

			array(
				'id'         => 'field-label',
				'type'       => 'Text',
				'name'       => 'field_label',
				'hide_label' => false,
				'label'      => esc_html__( 'Field Label', 'forminator' ),
				'className'  => 'text-field',
			),

			array(
				'id'           => 'field-type',
				'type'         => 'Select',
				'name'         => 'field_type',
				'className'    => 'select-field',
				'label_hidden' => false,
				'label'        => esc_html__( 'Field type', 'forminator' ),
				'values'       => array(
					array(
						'value' => 'text',
						'label' => esc_html__( 'Single line text', 'forminator' ),
					),
					array(
						'value' => 'textarea',
						'label' => esc_html__( 'Multi line text', 'forminator' ),
					),
					array(
						'value' => 'dropdown',
						'label' => esc_html__( 'Dropdown', 'forminator' ),
					),
					array(
						'value' => 'multiselect',
						'label' => esc_html__( 'Multi Select', 'forminator' ),
					),
					array(
						'value' => 'number',
						'label' => esc_html__( 'Number', 'forminator' ),
					),
					array(
						'value' => 'checkbox',
						'label' => esc_html__( 'Checkboxes', 'forminator' ),
					),
					array(
						'value' => 'radio',
						'label' => esc_html__( 'Radio Buttons', 'forminator' ),
					),
					array(
						'value' => 'hidden',
						'label' => esc_html__( 'Hidden', 'forminator' ),
					),
				),
			),

			array(
				'id'             => 'custom-field-name',
				'type'           => 'RadioContainer',
				'name'           => 'custom_field_name',
				'className'      => 'custom-field-name-field',
				'containerClass' => 'wpmudev-is_gray',
				'label'          => esc_html__( 'Custom field name', 'forminator' ),
				'values'         => array(
					array(
						'value' => 'existing',
						'label' => esc_html__( 'Existing field', 'forminator' ),
					),
					array(
						'value' => 'new',
						'label' => esc_html__( 'New field', 'forminator' ),
					),
				),
				'fields'         => array(
					array(
						'id'        => 'existing-field',
						'type'      => 'Select',
						'name'      => 'existing_field',
						'className' => 'existing-field',
						'label'     => esc_html__( 'Pick existing field', 'forminator' ),
						'tab'       => 'existing',
						'values'    => array(),
					),
				),
			),
		);
	}

	/**
	 * Field defaults
	 *
	 * @since 1.0
	 * @return array
	 */
	public function defaults() {
		return array(
			'value_type'  => 'select',
			'field_label' => '',
		);
	}

	/**
	 * 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 ) {
		$required      = self::get_property( 'required', $field, false );
		$id            = self::get_property( 'element_id', $field );
		$name          = $id;
		$field_type    = self::get_property( 'field_type', $field );
		$placeholder   = esc_html( self::get_property( 'placeholder', $field ) );
		$description   = self::get_property( 'description', $field );
		$label         = esc_html( self::get_property( 'field_label', $field ) );
		$id            = $id . '-field';
		$html          = '';
		$default_value = esc_html( self::get_property( 'default_value', $field ) );
		$post_value    = self::get_post_data( $name, false );
		$settings      = $views_obj->model->settings;

		$descr_position = self::get_description_position( $field, $settings );

		switch ( $field_type ) {
			case 'text':
				$html .= sprintf(
					'<input class="forminator-name--field forminator-input" type="text" data-required="%s" name="%s" placeholder="%s" id="%s" %s/>',
					$required,
					$name,
					$placeholder,
					$id,
					( $post_value ? 'value= "' . $post_value . '"' : '' )
				);
				break;
			case 'textarea':
				$field_markup = array(
					'type'        => 'textarea',
					'class'       => 'forminator-textarea',
					'name'        => $name,
					'id'          => $id,
					'placeholder' => $placeholder,
					'required'    => $required,
				);
				$html        .= self::create_textarea( $field_markup, $label, $description, $required, $descr_position );
				break;
			case 'dropdown':
				break;
			case 'multiselect':
				break;
			case 'number':
				$html .= sprintf(
					'<input class="forminator-number--field forminator-input" type="number" data-required="%s" name="%s" placeholder="%s" value="%s" id="%s" />',
					$required,
					$name,
					$placeholder,
					( $post_value ? $post_value : $default_value ),
					$id
				);
				break;
			case 'checkbox':
				break;
			case 'radio':
				break;
			case 'hidden':
				$html .= sprintf( '<input class="forminator-hidden--field" type="hidden" id="%s" name="%s" value="%s" />', $id, $name, $default_value );
				break;
			default:
				break;
		}

		return apply_filters( 'forminator_field_custom_markup', $html, $id, $required, $field_type, $placeholder );
	}

	/**
	 * Field back-end validation
	 *
	 * @since 1.0
	 * @param array        $field Field.
	 * @param array|string $data Data.
	 */
	public function validate( $field, $data ) {
		if ( $this->is_required( $field ) ) {
			$id   = self::get_property( 'element_id', $field );
			$name = self::get_property( 'custom_field_name', $field, esc_html__( 'field name', 'forminator' ) );
			if ( empty( $data ) ) {
				/* translators: %s: Field name */
				$this->validation_message[ $id ] = sprintf( esc_html__( 'This field is required. Please enter the %s.', 'forminator' ), $name );
			}
		}
	}

	/**
	 * 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 ) {
		return $data;
	}
}

SILENT KILLER Tool