Skip to content
Snippets Groups Projects
Commit a40d9091 authored by Oliver Bartsch's avatar Oliver Bartsch Committed by Christian Kuhn
Browse files

[BUGFIX] Restore "Edit shown fields" in recordlist

In single table view, there was previously the option
to edit all shown fields of the listed records.

This option got unintentionally removed in #95068
and is therefore now restored.

Resolves: #95134
Related: #95068
Releases: master
Change-Id: I65e31907032a164bd1bbad20b5fa154fbb93243a
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/70954


Tested-by: default avatarcore-ci <typo3@b13.com>
Tested-by: default avatarJochen <rothjochen@gmail.com>
Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Reviewed-by: default avatarJochen <rothjochen@gmail.com>
Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
parent faca515c
Branches
Tags
No related merge requests found
......@@ -1191,6 +1191,17 @@ class DatabaseRecordList
break;
case '_CONTROL_':
$theData[$fCol] = '<i>[' . htmlspecialchars($lang->sL('LLL:EXT:core/Resources/Private/Language/locallang_core.xlf:labels._CONTROL_')) . ']</i>';
// In single table view, add button to edit displayed fields of marked / listed records
if ($this->table && $permsEdit && is_array($currentIdList) && $this->isEditable($table)) {
$theData[$fCol] = '<button type="button"'
. ' class="btn btn-default t3js-record-edit-multiple"'
. ' title="' . htmlspecialchars($lang->getLL('editShownColumns')) . '"'
. ' aria-label="' . htmlspecialchars($lang->getLL('editShownColumns')) . '"'
. ' data-return-url="' . htmlspecialchars($this->listURL()) . '"'
. ' data-columns-only="' . htmlspecialchars(implode(',', $this->fieldArray)) . '">'
. $this->iconFactory->getIcon('actions-document-open', Icon::SIZE_SMALL)->render()
. '</button>';
}
break;
case '_PATH_':
// Path
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment