- Issue created by @quietone
- First commit to issue fork.
- Merge request !8542issue/3456149: Fixed translation string in ConfigFormBase β (Open) created by pooja_sharma
I have observed in core files (for eg. core/includes/errors.inc) instead of using translation t() can be use FormattableMarkup() (even same mentioned in MR where this issue trace out) , So replaced the t() with FormattableMarkup().
Please review , moving NR.
- Status changed to Needs review
9 months ago 7:40pm 25 June 2024 - Status changed to Needs work
9 months ago 6:12pm 26 June 2024 - πΊπΈUnited States smustgrave
Can the issue summary be updated as well please.
Thanks
- Status changed to Needs review
9 months ago 7:03pm 26 June 2024 - Status changed to RTBC
9 months ago 1:36pm 1 July 2024 - πΊπΈUnited States smustgrave
Made a small tweak to the comment, pulling from the issue summary, but change seems good to me. Function being protected assuming will be non disruptive to existing forms.
MR conflicts are visible on MR, addressed those
Rebased MR with latest code, seems working fine.
- Status changed to Needs work
9 months ago 10:49am 11 July 2024 - Status changed to Needs review
9 months ago 12:01pm 11 July 2024 - Status changed to Needs work
9 months ago 1:30pm 11 July 2024 - Status changed to Needs review
9 months ago 2:22pm 11 July 2024 - Status changed to RTBC
9 months ago 1:59pm 12 July 2024 - πΊπΈUnited States smustgrave
Don't have a preference over MarkupInterface or \Stringable but only one is used
- Status changed to Needs work
8 months ago 8:50am 29 July 2024 - π¬π§United Kingdom catch
One comment on the comment. Also I think @alexpott might have been asking for a return value of MarkupInterface|Stringable?
Applied suggestion: MarkupInterface|\Stringable for return type
Please review , moving NR
- Status changed to Needs review
8 months ago 11:23am 29 July 2024 - Status changed to RTBC
8 months ago 1:45pm 29 July 2024 - πΊπΈUnited States smustgrave
That's my mistake @pooja_sharma. Think you had that before and had you change it as I interpreted it differently.
- Status changed to Fixed
8 months ago 8:19am 30 July 2024 -
alexpott β
committed b0143182 on 11.x
Issue #3456149 by pooja_sharma, smustgrave, quietone, catch, alexpott:...
-
alexpott β
committed b0143182 on 11.x
Automatically closed - issue fixed for 2 weeks with no activity.
- π¨π¦Canada gapple
Ran into an issue with the the return type change, since I was developing a module using the latest version of core and copied the new return type hint.
When using the new return type in an override with a stable version of core <=11.0.5, the child class is returning a wider type than it's parent.
When using the old return type in an override with 11.x-dev,parent::formatMultipleViolationsMessage()
returns a wider type than the child class.For a module to maintain compatibility with older versions of core and not break if it calls the parent method which now returns
Markup
, it will need to change the value returned from its parent:$parent = parent::formatMultipleViolationsMessage($form_element_name, $violations); if ($parent instanceof TranslatableMarkup) { return $parent; } else { // phpcs:ignore Drupal.Semantics.FunctionT.NotLiteralString return $this->t((string) $parent); }
Once the module drops support for older versions of core, it can update its typehint and remove the extra code.
\Drupal\update\UpdateSettingsForm
also needs its return type updated. - π¨π¦Canada gapple
Opened π ConfigFormBase::formatMultipleViolationsMessage() return type change will cause error Active as a bug from this change.