| Server IP : 35.236.43.222 / Your IP : 216.73.216.143 Web Server : Apache System : Linux order-form-vm-001 5.10.0-37-cloud-amd64 #1 SMP Debian 5.10.247-1 (2025-12-11) x86_64 User : deploy ( 1002) PHP Version : 8.1.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/mastersystem.app/public/wp-content/plugins/mailpoet/lib/Form/ |
Upload File : |
<?php // phpcs:ignore SlevomatCodingStandard.TypeHints.DeclareStrictTypes.DeclareStrictTypesMissing
namespace MailPoet\Form;
if (!defined('ABSPATH')) exit;
use MailPoet\WP\Functions as WPFunctions;
class FormHtmlSanitizer {
/**
* @var array
* Configuration of allowed tags for form blocks that may contain some html.
* Covers all tags available in the form editor's Rich Text component and which we allow in checkbox label.
* This doesn't cover CustomHTML block.
*/
const ALLOWED_HTML = [
'a' => [
'class' => true,
'href' => true,
'title' => true,
'data-id' => true,
'data-type' => true,
'target' => true,
'rel' => true,
],
'br' => [],
'code' => [],
'em' => [],
'img' => [
'class' => true,
'style' => true,
'src' => true,
'alt' => true,
],
'kbd' => [],
'span' => [
'style' => true,
'data-font' => true,
'class' => true,
],
'mark' => [
'style' => true,
'class' => true,
],
'strong' => [],
'sub' => [],
'sup' => [],
's' => [],
];
/** @var WPFunctions */
private $wp;
public function __construct(
WPFunctions $wp
) {
$this->wp = $wp;
}
public function sanitize(string $html): string {
return $this->wp->wpKses($html, self::ALLOWED_HTML);
}
}