diff --git a/Classes/FrontendEditPanel.php b/Classes/FrontendEditPanel.php index 3b60905..0e1d3a0 100644 --- a/Classes/FrontendEditPanel.php +++ b/Classes/FrontendEditPanel.php @@ -109,36 +109,36 @@ class FrontendEditPanel { $panel .= $this->backendUser->adminPanel->ext_makeToolBar(); } if (isset($allow['edit'])) { - $icon = '' . $this->iconFactory->getIcon('actions-document-open', Icon::SIZE_SMALL) . ''; + $icon = '' . $this->iconFactory->getIcon('actions-document-open', Icon::SIZE_SMALL)->render() . ''; $panel .= $this->editPanelLinkWrap($icon, $formName, 'edit', $dataArr['_LOCALIZED_UID'] ? $table . ':' . $dataArr['_LOCALIZED_UID'] : $currentRecord); } // Hiding in workspaces because implementation is incomplete if (isset($allow['move']) && $sortField && $this->backendUser->workspace === 0) { - $icon = '' . $this->iconFactory->getIcon('actions-move-up', Icon::SIZE_SMALL) . ''; + $icon = '' . $this->iconFactory->getIcon('actions-move-up', Icon::SIZE_SMALL)->render() . ''; $panel .= $this->editPanelLinkWrap($icon, $formName, 'up'); - $icon = '' . $this->iconFactory->getIcon('actions-move-down', Icon::SIZE_SMALL) . ''; + $icon = '' . $this->iconFactory->getIcon('actions-move-down', Icon::SIZE_SMALL)->render() . ''; $panel .= $this->editPanelLinkWrap($icon, $formName, 'down'); } // Hiding in workspaces because implementation is incomplete // Hiding for localizations because it is unknown what should be the function in that case if (isset($allow['hide']) && $hideField && $this->backendUser->workspace === 0 && !$dataArr['_LOCALIZED_UID']) { if ($dataArr[$hideField]) { - $icon = $this->iconFactory->getIcon('actions-edit-unhide'); + $icon = $this->iconFactory->getIcon('actions-edit-unhide')->render(); $panel .= $this->editPanelLinkWrap($icon, $formName, 'unhide'); } else { - $icon = $this->iconFactory->getIcon('actions-edit-hide'); + $icon = $this->iconFactory->getIcon('actions-edit-hide')->render(); $panel .= $this->editPanelLinkWrap($icon, $formName, 'hide', '', $this->backendUser->extGetLL('p_hideConfirm')); } } if (isset($allow['new'])) { if ($table === 'pages') { $icon = '' - . $this->iconFactory->getIcon('actions-page-new', Icon::SIZE_SMALL) + . $this->iconFactory->getIcon('actions-page-new', Icon::SIZE_SMALL)->render() . ''; $panel .= $this->editPanelLinkWrap($icon, $formName, 'new', $currentRecord, ''); } else { $icon = '' - . $this->iconFactory->getIcon('actions-document-new', Icon::SIZE_SMALL) + . $this->iconFactory->getIcon('actions-document-new', Icon::SIZE_SMALL)->render() . ''; $panel .= $this->editPanelLinkWrap($icon, $formName, 'new', $currentRecord, '', $newUID); } @@ -147,7 +147,7 @@ class FrontendEditPanel { // Hiding for localizations because it is unknown what should be the function in that case if (isset($allow['delete']) && $this->backendUser->workspace === 0 && !$dataArr['_LOCALIZED_UID']) { $icon = '' - . $this->iconFactory->getIcon('actions-edit-delete', Icon::SIZE_SMALL) + . $this->iconFactory->getIcon('actions-edit-delete', Icon::SIZE_SMALL)->render() . ''; $panel .= $this->editPanelLinkWrap($icon, $formName, 'delete', '', $this->backendUser->extGetLL('p_deleteConfirm')); } @@ -217,7 +217,7 @@ class FrontendEditPanel { $this->frontendController->set_no_cache('Display frontend edit icons', TRUE); $iconTitle = $this->cObj->stdWrap($conf['iconTitle'], $conf['iconTitle.']); $iconImg = '' - . $this->iconFactory->getIcon('actions-document-open', Icon::SIZE_SMALL) + . $this->iconFactory->getIcon('actions-document-open', Icon::SIZE_SMALL)->render() . ''; $nV = GeneralUtility::_GP('ADMCMD_view') ? 1 : 0;