HEX
Server: Apache
System: Linux outside 5.4.8_Algonet_ZeroMAC_0.9.4.8 #6 SMP Mon Feb 3 20:36:07 CET 2020 x86_64
User: server (1002)
PHP: 8.3.20
Disabled: exec,passthru,shell_exec,system,proc_open,popen,curl_multi_exec,parse_ini_file,show_source
Upload Files
File: /home/muoapartman/www/wp-content/plugins/wpforms-lite/templates/admin/forms/search-reset.php
<?php
/**
 * Search reset block on forms overview page.
 *
 * @since 1.7.2
 *
 * @var string $search_term Current search term.
 * @var int    $count_all   Count all search result.
 */

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

?>
<div id="wpforms-reset-filter">
	<?php
	printf(
		wp_kses( /* translators: %1$d - number of forms found, %2$s - search term. */
			_n(
				'Found <strong>%1$d form</strong> containing <em>"%2$s"</em>',
				'Found <strong>%1$d forms</strong> containing <em>"%2$s"</em>',
				(int) $count_all,
				'wpforms-lite'
			),
			[
				'strong' => [],
				'em'     => [],
			]
		),
		(int) $count_all,
		esc_html( $search_term )
	);
	?>
	<i class="reset fa fa-times-circle" title="<?php esc_html_e( 'Clear search and return to All Forms', 'wpforms-lite' ); ?>"></i>
</div>