mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
FIX Add 'legal empty attributes' to allow empty alt values on imgs
In some situations, a caption is used in place of a value in the alt attribute, and in others an image may be cosmetic and not in need of an alt attribute value (though the alt attribute must still be rendered in this case).
This commit is contained in:
parent
3cfc21c405
commit
0d27f32cc9
@ -39,6 +39,16 @@ class HTML
|
||||
'wbr'
|
||||
];
|
||||
|
||||
/**
|
||||
* List of attributes that should be rendered even if they contain no value
|
||||
*
|
||||
* @config
|
||||
* @var array
|
||||
*/
|
||||
private static $legal_empty_attributes = [
|
||||
'alt',
|
||||
];
|
||||
|
||||
/**
|
||||
* Construct and return HTML tag.
|
||||
*
|
||||
@ -52,10 +62,13 @@ class HTML
|
||||
$tag = strtolower($tag);
|
||||
|
||||
// Build list of arguments
|
||||
$legalEmptyAttributes = static::config()->get('legal_empty_attributes');
|
||||
$preparedAttributes = '';
|
||||
foreach ($attributes as $attributeKey => $attributeValue) {
|
||||
$whitelisted = in_array($attributeKey, $legalEmptyAttributes);
|
||||
|
||||
// Only set non-empty strings (ensures strlen(0) > 0)
|
||||
if (strlen($attributeValue) > 0) {
|
||||
if (strlen($attributeValue) > 0 || $whitelisted) {
|
||||
$preparedAttributes .= sprintf(
|
||||
' %s="%s"',
|
||||
$attributeKey,
|
||||
|
@ -45,6 +45,16 @@ class HTMLTest extends SapphireTest
|
||||
$this->assertEquals('<a title="HTML & Text">Some <strong>content!</strong></a>', $tag);
|
||||
}
|
||||
|
||||
public function testImgTag()
|
||||
{
|
||||
$tag = HTML::createTag('img', [
|
||||
'src' => 'example.png',
|
||||
'alt' => '',
|
||||
]);
|
||||
|
||||
$this->assertEquals('<img src="example.png" alt="" />', $tag);
|
||||
}
|
||||
|
||||
public function testVoidContentError()
|
||||
{
|
||||
$this->expectException(InvalidArgumentException::class);
|
||||
|
Loading…
Reference in New Issue
Block a user