HEX
Server: LiteSpeed
System: Linux s787.bom1.mysecurecloudhost.com 4.18.0-477.13.1.lve.el8.x86_64 #1 SMP Thu Jun 1 16:40:47 EDT 2023 x86_64
User: mobilech (5348)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: //proc/self/cwd/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. */