diff --git a/typo3/sysext/backend/Classes/ClickMenu/ClickMenu.php b/typo3/sysext/backend/Classes/ClickMenu/ClickMenu.php index 8068e8cb50fa3d38f913ae00d9645da5e04b9fc2..82e1f5f3d514c71e5d004c1ac33c23da69418d15 100644 --- a/typo3/sysext/backend/Classes/ClickMenu/ClickMenu.php +++ b/typo3/sysext/backend/Classes/ClickMenu/ClickMenu.php @@ -567,7 +567,7 @@ class ClickMenu { */ public function DB_history($table, $uid) { $url = BackendUtility::getModuleUrl('record_history', array('element' => $table . ':' . $uid)); - return $this->linkItem($this->languageService->makeEntities($this->languageService->getLL('CM_history')), IconUtility::getSpriteIcon('actions-document-history-open'), $this->urlRefForCM($url, 'returnUrl'), 0); + return $this->linkItem($this->languageService->makeEntities($this->languageService->getLL('CM_history')), $this->iconFactory->getIcon('actions-document-history-open', Icon::SIZE_SMALL), $this->urlRefForCM($url, 'returnUrl'), 0); } /** diff --git a/typo3/sysext/backend/Classes/Controller/ContentElement/ElementInformationController.php b/typo3/sysext/backend/Classes/Controller/ContentElement/ElementInformationController.php index e33e0bcdf3461b7068e95828b4135a676c936bb6..c5ff32a87de1c80e89b6c720e5b3c65ea6cd1eb1 100644 --- a/typo3/sysext/backend/Classes/Controller/ContentElement/ElementInformationController.php +++ b/typo3/sysext/backend/Classes/Controller/ContentElement/ElementInformationController.php @@ -16,6 +16,8 @@ namespace TYPO3\CMS\Backend\Controller\ContentElement; use TYPO3\CMS\Backend\Utility\BackendUtility; use TYPO3\CMS\Backend\Utility\IconUtility; +use TYPO3\CMS\Core\Imaging\Icon; +use TYPO3\CMS\Core\Imaging\IconFactory; use TYPO3\CMS\Core\Resource\Folder; use TYPO3\CMS\Core\Resource\ProcessedFile; use TYPO3\CMS\Core\Resource\ResourceFactory; @@ -102,10 +104,16 @@ class ElementInformationController { */ protected $titleTag; + /** + * @var IconFactory + */ + protected $iconFactory; + /** * Constructor */ public function __construct() { + $this->iconFactory = GeneralUtility::makeInstance(IconFactory::class); $GLOBALS['SOBE'] = $this; $this->init(); @@ -570,7 +578,7 @@ class ElementInformationController { ) . '; return false;'; $pageActionIcons .= ' <a class="btn btn-default btn-sm" href="#" onclick="' . htmlspecialchars($historyOnClick) . '"> - ' . IconUtility::getSpriteIcon('actions-document-history-open') . ' + ' . $this->iconFactory->getIcon('actions-document-history-open', Icon::SIZE_SMALL) . ' </a>'; if ($table === 'pages') { diff --git a/typo3/sysext/backend/Classes/Controller/EditDocumentController.php b/typo3/sysext/backend/Classes/Controller/EditDocumentController.php index acf828cc0cb2fb9550bfce7c32ce84723bc608be..31d50a9a4e2277138a3e30b5bd5d21359bb1229e 100644 --- a/typo3/sysext/backend/Classes/Controller/EditDocumentController.php +++ b/typo3/sysext/backend/Classes/Controller/EditDocumentController.php @@ -21,6 +21,8 @@ use TYPO3\CMS\Backend\Utility\BackendUtility; use TYPO3\CMS\Backend\Utility\IconUtility; use TYPO3\CMS\Core\DataHandling\DataHandler; use TYPO3\CMS\Core\Html\HtmlParser; +use TYPO3\CMS\Core\Imaging\Icon; +use TYPO3\CMS\Core\Imaging\IconFactory; use TYPO3\CMS\Core\Messaging\FlashMessage; use TYPO3\CMS\Core\Messaging\FlashMessageService; use TYPO3\CMS\Core\Page\PageRenderer; @@ -412,12 +414,18 @@ class EditDocumentController { */ protected $previewData = []; + /** + * @var IconFactory + */ + protected $iconFactory; + /** * Constructor */ public function __construct() { $GLOBALS['SOBE'] = $this; $this->getLanguageService()->includeLLFile('EXT:lang/locallang_alt_doc.xlf'); + $this->iconFactory = GeneralUtility::makeInstance(IconFactory::class); } /** @@ -1179,7 +1187,7 @@ class EditDocumentController { ) ) ) . '; return false;'; - $buttons['history'] = '<a href="#" onclick="' . htmlspecialchars($aOnClick) . '">' . IconUtility::getSpriteIcon('actions-document-history-open') . '</a>'; + $buttons['history'] = '<a href="#" onclick="' . htmlspecialchars($aOnClick) . '">' . $this->iconFactory->getIcon('actions-document-history-open', Icon::SIZE_SMALL) . '</a>'; } // If only SOME fields are shown in the form, this will link the user to the FULL form: if ($this->columnsOnly) { diff --git a/typo3/sysext/backend/Classes/Controller/PageLayoutController.php b/typo3/sysext/backend/Classes/Controller/PageLayoutController.php index d275aa9d70bf83a8146050dbab50f8153cc92f87..0318ef39b696771a40eb3bd2c6fb7a4c8028d3b5 100755 --- a/typo3/sysext/backend/Classes/Controller/PageLayoutController.php +++ b/typo3/sysext/backend/Classes/Controller/PageLayoutController.php @@ -16,6 +16,8 @@ namespace TYPO3\CMS\Backend\Controller; use TYPO3\CMS\Backend\Utility\BackendUtility; use TYPO3\CMS\Backend\Utility\IconUtility; +use TYPO3\CMS\Core\Imaging\Icon; +use TYPO3\CMS\Core\Imaging\IconFactory; use TYPO3\CMS\Core\Type\Bitmask\Permission; use TYPO3\CMS\Core\Messaging\FlashMessage; use TYPO3\CMS\Core\Utility\ExtensionManagementUtility; @@ -298,6 +300,11 @@ class PageLayoutController { */ public $contentElementCache = array(); + /** + * @var IconFactory + */ + protected $iconFactory; + /** * Initializing the module * @@ -1106,6 +1113,9 @@ class PageLayoutController { * @return array all available buttons as an assoc. array */ protected function getButtons($function = '') { + /** @var IconFactory $iconFactory */ + $iconFactory = GeneralUtility::makeInstance(IconFactory::class); + $lang = $this->getLanguageService(); $buttons = array( 'view' => '', @@ -1237,7 +1247,7 @@ class PageLayoutController { ) ) . '#latest' ) . ');return false;') . '" - title="' . $lang->getLL('recordHistory', TRUE) . '">' . IconUtility::getSpriteIcon('actions-document-history-open') . '</a>'; + title="' . $lang->getLL('recordHistory', TRUE) . '">' . $iconFactory->getIcon('actions-document-history-open', Icon::SIZE_SMALL) . '</a>'; } } } diff --git a/typo3/sysext/belog/Classes/ViewHelpers/HistoryEntryViewHelper.php b/typo3/sysext/belog/Classes/ViewHelpers/HistoryEntryViewHelper.php index d643d77fa140bd1ec9f81533faf6d5399cba02b6..1edb0aaa2e887eacbf97f6acde29d4f42b21e8a8 100644 --- a/typo3/sysext/belog/Classes/ViewHelpers/HistoryEntryViewHelper.php +++ b/typo3/sysext/belog/Classes/ViewHelpers/HistoryEntryViewHelper.php @@ -18,6 +18,8 @@ use TYPO3\CMS\Backend\Utility\BackendUtility; use TYPO3\CMS\Backend\Utility\IconUtility; use TYPO3\CMS\Belog\Domain\Model\HistoryEntry; use TYPO3\CMS\Belog\Domain\Repository\HistoryEntryRepository; +use TYPO3\CMS\Core\Imaging\Icon; +use TYPO3\CMS\Core\Imaging\IconFactory; use TYPO3\CMS\Core\Utility\GeneralUtility; use TYPO3\CMS\Extbase\Object\ObjectManager; use TYPO3\CMS\Extbase\Utility\LocalizationUtility; @@ -63,6 +65,8 @@ class HistoryEntryViewHelper extends AbstractViewHelper implements CompilableInt $historyEntry = $historyEntryRepository->findOneBySysLogUid($arguments['uid']); /** @var \TYPO3\CMS\Extbase\Mvc\Controller\ControllerContext $controllerContext */ $controllerContext = $renderingContext->getControllerContext(); + /** @var IconFactory $iconFactory */ + $iconFactory = GeneralUtility::makeInstance(IconFactory::class); if (!$historyEntry instanceof HistoryEntry) { return ''; @@ -72,9 +76,11 @@ class HistoryEntryViewHelper extends AbstractViewHelper implements CompilableInt $controllerContext->getRequest()->getControllerExtensionName(), array($historyEntry->getFieldlist()) ); - $historyIcon = IconUtility::getSpriteIcon('actions-document-history-open', array( - 'title' => LocalizationUtility::translate('showHistory', $controllerContext->getRequest()->getControllerExtensionName()) - )); + $titleLable = LocalizationUtility::translate( + 'showHistory', + $controllerContext->getRequest()->getControllerExtensionName() + ); + $historyIcon = $iconFactory->getIcon('actions-document-history-open', Icon::SIZE_SMALL); $historyHref = BackendUtility::getModuleUrl( 'record_history', array( @@ -82,7 +88,7 @@ class HistoryEntryViewHelper extends AbstractViewHelper implements CompilableInt 'returnUrl' => GeneralUtility::getIndpEnv('REQUEST_URI'), ) ); - $historyLink = '<a href="' . htmlspecialchars($historyHref) . '">' . $historyIcon . '</a>'; + $historyLink = '<a href="' . htmlspecialchars($historyHref) . '" title="' . htmlspecialchars($titleLable) . '">' . $historyIcon . '</a>'; return $historyLabel . ' ' . $historyLink; } diff --git a/typo3/sysext/core/Classes/Imaging/IconRegistry.php b/typo3/sysext/core/Classes/Imaging/IconRegistry.php index fd397e53dab2928fe148ab537fb6091b6d7c38d0..9d48ffc8bceb3f3afee742ef9182c809e332fa06 100644 --- a/typo3/sysext/core/Classes/Imaging/IconRegistry.php +++ b/typo3/sysext/core/Classes/Imaging/IconRegistry.php @@ -56,6 +56,12 @@ class IconRegistry implements \TYPO3\CMS\Core\SingletonInterface { 'name' => 'download', ) ), + 'actions-document-history-open' => array( + 'provider' => FontawesomeIconProvider::class, + 'options' => array( + 'name' => 'history', + ) + ), 'actions-document-info' => array( 'provider' => FontawesomeIconProvider::class, 'options' => array( diff --git a/typo3/sysext/frontend/Classes/View/AdminPanelView.php b/typo3/sysext/frontend/Classes/View/AdminPanelView.php index 2a21a331942316aa2d6f52363cdb526aa9a50c18..9fb6043f6591b886afcdec3965c0d3fc8f9fe4a9 100755 --- a/typo3/sysext/frontend/Classes/View/AdminPanelView.php +++ b/typo3/sysext/frontend/Classes/View/AdminPanelView.php @@ -612,8 +612,9 @@ class AdminPanelView { $id = $GLOBALS['TSFE']->id; $returnUrl = GeneralUtility::getIndpEnv('REQUEST_URI'); - $icon = IconUtility::getSpriteIcon('actions-document-history-open', array('title' => $this->extGetLL('edit_recordHistory', FALSE))); - $toolBar = '<a class="t3-icon btn btn-default" href="' . htmlspecialchars(BackendUtility::getModuleUrl('record_history', array('element' => 'pages:' . $id, 'returnUrl' => $returnUrl))) . '#latest">' . $icon . '</a>'; + $icon = $iconFactory->getIcon('actions-document-history-open', Icon::SIZE_SMALL); + $link = BackendUtility::getModuleUrl('record_history', array('element' => 'pages:' . $id, 'returnUrl' => $returnUrl)); + $toolBar = '<a class="t3-icon btn btn-default" href="' . htmlspecialchars($link) . '#latest" title="' . $this->extGetLL('edit_recordHistory') . '">' . $icon . '</a>'; if ($perms & Permission::CONTENT_EDIT && $langAllowed) { $params = ''; if ($GLOBALS['TSFE']->sys_language_uid) { @@ -621,14 +622,12 @@ class AdminPanelView { } $icon = $iconFactory->getIcon('actions-document-new', Icon::SIZE_SMALL); $link = $newContentWizScriptPath . 'id=' . $id . $params . '&returnUrl=' . rawurlencode($returnUrl); - $toolBar .= '<a class="t3-icon btn btn-default" href="' . htmlspecialchars($link) . '"' . - $toolBar .= 'title="' . $this->extGetLL('edit_newContentElement', FALSE) . '"">' . $icon . '</a>'; + $toolBar .= '<a class="t3-icon btn btn-default" href="' . htmlspecialchars($link) . '" title="' . $this->extGetLL('edit_newContentElement') . '"">' . $icon . '</a>'; } if ($perms & Permission::PAGE_EDIT) { $icon = $iconFactory->getIcon('actions-document-move', Icon::SIZE_SMALL); $link = BackendUtility::getModuleUrl('move_element', ['table' => 'pages', 'uid' => $id, 'returnUrl' => $returnUrl]); - $toolBar .= '<a class="t3-icon btn btn-default" href="' . htmlspecialchars($link) . - $toolBar .= '" title="' . $this->extGetLL('edit_move_page', FALSE) . '">' . $icon . '</a>'; + $toolBar .= '<a class="t3-icon btn btn-default" href="' . htmlspecialchars($link) . '" title="' . $this->extGetLL('edit_move_page') . '">' . $icon . '</a>'; } if ($perms & Permission::PAGE_NEW) { $icon = IconUtility::getSpriteIcon('actions-page-new', array('title' => $this->extGetLL('edit_newPage', FALSE))); diff --git a/typo3/sysext/recordlist/Classes/RecordList/DatabaseRecordList.php b/typo3/sysext/recordlist/Classes/RecordList/DatabaseRecordList.php index 85ac4215fec062deb3e6b3246daca0ed649d331d..82133205b8d1ff439c4adfe86a7a322567c3e86b 100644 --- a/typo3/sysext/recordlist/Classes/RecordList/DatabaseRecordList.php +++ b/typo3/sysext/recordlist/Classes/RecordList/DatabaseRecordList.php @@ -1267,7 +1267,7 @@ class DatabaseRecordList extends AbstractDatabaseRecordList { $onClick = 'return jumpExt(' . GeneralUtility::quoteJSvalue($moduleUrl) . ',\'#latest\');'; $historyAction = '<a class="btn btn-default" href="#" onclick="' . htmlspecialchars($onClick) . '" title="' . $this->getLanguageService()->getLL('history', TRUE) . '">' - . IconUtility::getSpriteIcon('actions-document-history-open') . '</a>'; + . $this->iconFactory->getIcon('actions-document-history-open', Icon::SIZE_SMALL) . '</a>'; $this->addActionToCellGroup($cells, $historyAction, 'history'); // Versioning: if (ExtensionManagementUtility::isLoaded('version') && !ExtensionManagementUtility::isLoaded('workspaces')) {