Skip to content

Commit aa4d6db

Browse files
committedMay 14, 2024
Make alt text inline-editable from the Assets index page
#14893
1 parent e605f63 commit aa4d6db

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed
 

‎CHANGELOG-WIP.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Release Notes for Craft CMS 5.2 (WIP)
22

33
### Content Management
4+
- It’s now possible to edit assets’ alternative text from the Assets index page. ([#14893](https://github.com/craftcms/cms/discussions/14893))
45
- Element index checkboxes no longer have a lag when deselected, except within element selection modals. ([#14896](https://github.com/craftcms/cms/issues/14896))
56
- Improved mobile styling. ([#14910](https://github.com/craftcms/cms/pull/14910))
67
- Improved the look of slideouts.

‎src/elements/Asset.php

+16
Original file line numberDiff line numberDiff line change
@@ -2643,6 +2643,22 @@ public function getInlineAttributeInputHtml(string $attribute): string
26432643
return parent::getInlineAttributeInputHtml($attribute);
26442644
}
26452645

2646+
/**
2647+
* @inheritdoc
2648+
*/
2649+
protected function inlineAttributeInputHtml(string $attribute): string
2650+
{
2651+
switch ($attribute) {
2652+
case 'alt':
2653+
return Cp::textareaHtml([
2654+
'name' => 'alt',
2655+
'value' => $this->alt,
2656+
]);
2657+
default:
2658+
return parent::inlineAttributeInputHtml($attribute);
2659+
}
2660+
}
2661+
26462662
/**
26472663
* Returns the HTML for asset previews.
26482664
*

0 commit comments

Comments
 (0)