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/pro/templates/admin/payments/single/layout-rows.php
<?php
/**
 * Single payment entry layout rows template.
 *
 * @since 1.9.3
 *
 * @var array $field Field data.
 * @var array $rows Rows data.
 */

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

$label_hide = $field['label_hide'] ?? false;

?>

<div class="wpforms-payment-entry-layout-block">
	<?php if ( ! $label_hide ) : ?>
		<div class="wpforms-payment-entry-field-name">
			<?php echo esc_html( $field['label'] ); ?>
		</div>
	<?php endif; ?>

	<?php
		foreach ( $rows as $key => $columns ) {
			echo wpforms_render( // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
				'admin/payments/single/row-items',
				[
					'items' => $columns,
					'type'  => $field['type'],
				],
				true
			);
		}
	?>
</div>