1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php /** * Template for displaying the html field * * @var array $field The field. * @package YITH\PluginFramework\Templates\Fields */
defined( 'ABSPATH' ) || exit; // Exit if accessed directly.
list ( $html ) = yith_plugin_fw_extract( $field, 'html' );
$html = ! ! $html ? $html : '';
echo $html; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
|