HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: /var/www/html/TriadGov/wp-content/plugins/wpforms/templates/admin/payments/tablenav-filters.php
<?php
/**
 * Display extra filters for the payment table.
 *
 * @since 1.8.4
 *
 * @var string $filters Tablenav filters.
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

// Leave early if no filters are provided.
if ( empty( $filters ) ) {
	return;
}

// Allowed HTML tags, and attributes for the filters.
$allowed_filters_attributes = [
	'select' => [
		'name'          => [],
		'class'         => [],
		'multiple'      => [],
		'placeholder'   => [],
		'data-settings' => [],
	],
	'option' => [
		'value'    => [],
		'selected' => [],
	],
];

?>
<div class="wpforms-tablenav-filters">
	<?php echo wp_kses( $filters, $allowed_filters_attributes ); ?>
	<input type="submit" class="button" value="<?php esc_attr_e( 'Filter', 'wpforms-lite' ); ?>">
</div>
<?php
/* Omit closing PHP tag at the end of PHP files to avoid "headers already sent" issues. */