return ['src', 'href', 'lowsrc', 'background', 'ping'
];
} public function sanitizeAttribute(string
$element, string
$attribute, string
$value, HtmlSanitizerConfig
$config): ?string
{ if ('a' ===
$element) { return UrlSanitizer::
sanitize( $value,
$config->
getAllowedLinkSchemes(),
$config->
getForceHttpsUrls(),
$config->
getAllowedLinkHosts(),
$config->
getAllowRelativeLinks(),
);
} return UrlSanitizer::
sanitize( $value,
$config->
getAllowedMediaSchemes(),
$config->
getForceHttpsUrls(),
$config->
getAllowedMediaHosts(),
$config->
getAllowRelativeMedias(),
);
}}