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/plugins-list/update-notice.php
<?php
/**
 * Admin > Plugins list for Pro.
 * Template of the update plugin notice.
 *
 * @since 1.8.6
 *
 * @var string $plugin_slug   Plugin slug.
 * @var string $plugin_path   Plugin file path.
 * @var int    $columns_count Columns count.
 * @var string $update_notice Notice text markup.
 */

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

$kses_args = [
	'a'    => [
		'href'       => [],
		'target'     => [],
		'aria-label' => [],
		'rel'        => [],
		'class'      => [],
	],
	'br'   => [],
	'span' => [
		'class' => [],
	],
]

?>
<tr class="plugin-update-tr active"
	id="<?php echo esc_attr( $plugin_slug ); ?>-update"
	data-slug="<?php echo esc_attr( $plugin_slug ); ?>"
	data-plugin="<?php echo esc_attr( $plugin_path ); ?>"
>
	<td colspan="<?php echo esc_attr( $columns_count ); ?>" class="plugin-update">
		<div class="update-message notice inline notice-warning notice-alt">
			<p>
				<?php echo wp_kses( $update_notice, $kses_args ); ?>
			</p>
		</div>
	</td>
</tr>