Task #64438
closedThumbnail size with PageTS or UserTS - Pictures are to small in backend
100%
Description
For the clients it were beautiful to set the thumbnail size over PageTS or UserTS (constants), because they are to small for a lot of user.
1. typo3/sysext/recordlist/Classes/Browser/ElementBrowser.php
row: 1545
static public function thumbCode($row, $table, $field, $backPath, $thumbScript = '', $uploaddir = NULL, $abs = 0, $tparams = '', $size = '', $linkInfoPopup = TRUE) {
// Check and parse the size parameter
$sizeParts = array(128, 128);
2. Typo3/sysext/core/Classes/Utility/ExtensionManagementUtility.php
row: 529
'appearance' => array('useSortable' => TRUE,
'headerThumbnail' => array(
'field' => 'uid_local',
- 'width' => '45',
'height' => '45c',*
),
3. Typo3_src -> typo3/sysext/backend/classes/Utility/BackendUtility.php
Zeile 1545
static public function thumbCode($row, $table, $field, $backPath, $thumbScript = '', $uploaddir = NULL, $abs = 0, $tparams = '', $size = '', $linkInfoPopup = TRUE) {
// Check and parse the size parameter
$sizeParts = array(64, 64);
if ($size = trim($size)) {
$sizeParts = explode('x', $size . 'x' . $size);
if (!(int)$sizeParts0) {
$size = '';
}
}
Updated by Mathias Schreiber almost 10 years ago
- Target version set to 7.4 (Backend)
Updated by Susanne Moog over 9 years ago
- Target version changed from 7.4 (Backend) to 7.5
Updated by Riccardo De Contardi about 9 years ago
- Category set to Backend User Interface
Updated by Riccardo De Contardi over 7 years ago
- Tracker changed from Feature to Task
- Target version set to 9.0
- TYPO3 Version set to 8
- PHP Version set to 7.0
Updated by Riccardo De Contardi about 7 years ago
- Status changed from New to Closed
- Target version deleted (
9.0)
I close this issue, as it has been solved with #73357
If you think that this is the wrong decision or that there is still work to be done, please reopen it or open a new issue with a reference to this one.