Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename tableAttributeHtml #633

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/5.x/extend/element-types.md
Original file line number Diff line number Diff line change
Expand Up @@ -704,7 +704,7 @@ If a user has customized a source, the default attributes will no longer apply t
Table attribute values default to the corresponding element attribute, cast as a string. Add a protected `tableAttributeHtml()` method on your element class to override the returned HTML:

```php
protected function tableAttributeHtml(string $attribute): string
protected function attributeHtml(string $attribute): string
{
switch ($attribute) {
case 'price':
Expand All @@ -714,7 +714,7 @@ protected function tableAttributeHtml(string $attribute): string
return strtoupper($this->currency);
}

return parent::tableAttributeHtml($attribute);
return parent::attributeHtml($attribute);
}
```

Expand Down