HEX
Server: LiteSpeed
System: Linux server315.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: globfdxw (6114)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: //home/globfdxw/www/wp-content/plugins/wpforms/src/Pro/Forms/Fields/PaymentTotal/Frontend.php
<?php

namespace WPForms\Pro\Forms\Fields\PaymentTotal;

use WPForms\Forms\Fields\Base\Frontend as FrontendBase;

/**
 * Frontend class for the Payment Total field.
 *
 * @since 1.8.1
 */
class Frontend extends FrontendBase {

	/**
	 * Hooks.
	 *
	 * @since 1.8.1
	 */
	protected function hooks() {

		if ( wpforms_get_render_engine() !== 'modern' ) {
			return;
		}

		// Hooks for Modern Markup mode only.
		add_filter( 'wpforms_field_properties_payment-total', [ $this, 'field_properties_modern' ], 0, 3 );
	}

	/**
	 * Additional field properties for the modern markup mode.
	 *
	 * @since 1.8.1
	 *
	 * @param array $properties Field properties.
	 * @param array $field      Field settings.
	 * @param array $form_data  Form data and settings.
	 *
	 * @return array
	 */
	public function field_properties_modern( $properties, $field, $form_data ) {

		// Screen readers must read the updated value.
		$properties['container']['attr']['aria-live']   = 'polite';
		$properties['container']['attr']['aria-atomic'] = 'true';

		return $properties;
	}
}