diff --git a/typo3/sysext/backend/Classes/ClickMenu/ClickMenu.php b/typo3/sysext/backend/Classes/ClickMenu/ClickMenu.php index 617b5a0c393910a182b2b93e2fcf02956114db9a..8068e8cb50fa3d38f913ae00d9645da5e04b9fc2 100644 --- a/typo3/sysext/backend/Classes/ClickMenu/ClickMenu.php +++ b/typo3/sysext/backend/Classes/ClickMenu/ClickMenu.php @@ -18,6 +18,8 @@ use TYPO3\CMS\Backend\Clipboard\Clipboard; use TYPO3\CMS\Backend\Utility\BackendUtility; use TYPO3\CMS\Backend\Utility\IconUtility; use TYPO3\CMS\Core\Authentication\BackendUserAuthentication; +use TYPO3\CMS\Core\Imaging\Icon; +use TYPO3\CMS\Core\Imaging\IconFactory; use TYPO3\CMS\Core\Resource\Folder; use TYPO3\CMS\Core\Resource\ResourceFactory; use TYPO3\CMS\Core\Type\Bitmask\JsConfirmation; @@ -147,6 +149,11 @@ class ClickMenu { */ protected $backendUser; + /** + * @var IconFactory + */ + protected $iconFactory; + /** * @param LanguageService $languageService Language Service to inject * @param BackendUserAuthentication $backendUser @@ -154,6 +161,7 @@ class ClickMenu { public function __construct(LanguageService $languageService = NULL, BackendUserAuthentication $backendUser = NULL) { $this->languageService = $languageService ?: $GLOBALS['LANG']; $this->backendUser = $backendUser ?: $GLOBALS['BE_USER']; + $this->iconFactory = GeneralUtility::makeInstance(IconFactory::class); } /** @@ -546,7 +554,7 @@ class ClickMenu { * @internal */ public function DB_info($table, $uid) { - return $this->linkItem($this->label('info'), IconUtility::getSpriteIcon('actions-document-info'), 'top.launchView(' . GeneralUtility::quoteJSvalue($table) . ', ' . GeneralUtility::quoteJSvalue($uid) . ');'); + return $this->linkItem($this->label('info'), $this->iconFactory->getIcon('actions-document-info', Icon::SIZE_SMALL), 'top.launchView(' . GeneralUtility::quoteJSvalue($table) . ', ' . GeneralUtility::quoteJSvalue($uid) . ');'); } /** @@ -1473,4 +1481,4 @@ class ClickMenu { return $str . '.location'; } -} +} \ No newline at end of file diff --git a/typo3/sysext/backend/Classes/Clipboard/Clipboard.php b/typo3/sysext/backend/Classes/Clipboard/Clipboard.php index 7efd6a88c85d984464beae58e7cf7bb1518114d5..a6daba7fea169d3917bc2b0e7cffe3ccc059445f 100644 --- a/typo3/sysext/backend/Classes/Clipboard/Clipboard.php +++ b/typo3/sysext/backend/Classes/Clipboard/Clipboard.php @@ -16,6 +16,8 @@ namespace TYPO3\CMS\Backend\Clipboard; 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\ResourceFactory; use TYPO3\CMS\Core\Type\Bitmask\JsConfirmation; use TYPO3\CMS\Core\Utility\GeneralUtility; @@ -77,6 +79,18 @@ class Clipboard { */ public $fileMode = 0; + /** + * @var IconFactory + */ + protected $iconFactory; + + /** + * Construct + */ + public function __construct() { + $this->iconFactory = GeneralUtility::makeInstance(IconFactory::class); + } + /***************************************** * * Initialize @@ -386,7 +400,7 @@ class Clipboard { <td nowrap="nowrap" width="95%">' . $this->linkItemText(htmlspecialchars(GeneralUtility::fixed_lgd_cs($fileObject->getName(), $this->getBackendUser()->uc['titleLen'])), $fileObject->getName()) . ($pad == 'normal' ? ' <strong>(' . ($this->clipData['normal']['mode'] == 'copy' ? $this->clLabel('copy', 'cm') : $this->clLabel('cut', 'cm')) . ')</strong>' : '') . ' ' . $thumb . '</td> <td nowrap="nowrap" class="col-control"> <div class="btn-group"> - <a class="btn btn-default" href="#" onclick="' . htmlspecialchars(('top.launchView(' . GeneralUtility::quoteJSvalue($table) . ', ' . GeneralUtility::quoteJSvalue($v) . '); return false;')) . '">' . IconUtility::getSpriteIcon('actions-document-info', array('title' => $this->clLabel('info', 'cm'))) . '</a>' . '<a class="btn btn-default" href="' . htmlspecialchars($this->removeUrl('_FILE', GeneralUtility::shortmd5($v))) . '#clip_head">' . IconUtility::getSpriteIcon('actions-selection-delete', array('title' => $this->clLabel('removeItem'))) . '</a> + <a class="btn btn-default" href="#" onclick="' . htmlspecialchars(('top.launchView(' . GeneralUtility::quoteJSvalue($table) . ', ' . GeneralUtility::quoteJSvalue($v) . '); return false;')) . '"title="' . $this->clLabel('info', 'cm') .'">' . $this->iconFactory->getIcon('actions-document-info', Icon::SIZE_SMALL) . '</a>' . '<a class="btn btn-default" href="' . htmlspecialchars($this->removeUrl('_FILE', GeneralUtility::shortmd5($v))) . '#clip_head">' . IconUtility::getSpriteIcon('actions-selection-delete', array('title' => $this->clLabel('removeItem'))) . '</a> </div> </td> </tr>'; @@ -405,7 +419,7 @@ class Clipboard { <td nowrap="nowrap" width="95%">' . $this->linkItemText(htmlspecialchars(GeneralUtility::fixed_lgd_cs(BackendUtility::getRecordTitle($table, $rec), $this->getBackendUser()->uc['titleLen'])), $rec, $table) . ($pad == 'normal' ? ' <strong>(' . ($this->clipData['normal']['mode'] == 'copy' ? $this->clLabel('copy', 'cm') : $this->clLabel('cut', 'cm')) . ')</strong>' : '') . ' </td> <td nowrap="nowrap" class="col-control"> <div class="btn-group"> - <a class="btn btn-default" href="#" onclick="' . htmlspecialchars(('top.launchView(' . GeneralUtility::quoteJSvalue($table) . ', \'' . (int)$uid . '\'); return false;')) . '">' . IconUtility::getSpriteIcon('actions-document-info', array('title' => $this->clLabel('info', 'cm'))) . '</a>' . '<a class="btn btn-default" href="' . htmlspecialchars($this->removeUrl($table, $uid)) . '#clip_head">' . IconUtility::getSpriteIcon('actions-selection-delete', array('title' => $this->clLabel('removeItem'))) . '</a> + <a class="btn btn-default" href="#" onclick="' . htmlspecialchars(('top.launchView(' . GeneralUtility::quoteJSvalue($table) . ', \'' . (int)$uid . '\'); return false;')) . '" title="' . $this->clLabel('info', 'cm') .'">' . $this->iconFactory->getIcon('actions-document-info', Icon::SIZE_SMALL) . '</a>' . '<a class="btn btn-default" href="' . htmlspecialchars($this->removeUrl($table, $uid)) . '#clip_head">' . IconUtility::getSpriteIcon('actions-selection-delete', array('title' => $this->clLabel('removeItem'))) . '</a> </div> </td> </tr>'; diff --git a/typo3/sysext/beuser/Resources/Private/Partials/BackendUser/IndexListRow.html b/typo3/sysext/beuser/Resources/Private/Partials/BackendUser/IndexListRow.html index 5cf0897df630ef5cfe8503ad6cfde313119af777..1c688b851327d8b92bff81b57ec7d2bc7c6eaae6 100644 --- a/typo3/sysext/beuser/Resources/Private/Partials/BackendUser/IndexListRow.html +++ b/typo3/sysext/beuser/Resources/Private/Partials/BackendUser/IndexListRow.html @@ -1,5 +1,6 @@ {namespace be = TYPO3\CMS\Backend\ViewHelpers} {namespace bu = TYPO3\CMS\Beuser\ViewHelpers} +{namespace core = TYPO3\CMS\Core\ViewHelpers} <tr> <td class="col-icon"> @@ -30,7 +31,7 @@ <td class="col-control"> <f:link.action action="addToCompareList" arguments="{uid: backendUser.uid}" class="btn btn-default"><be:spriteManagerIcon iconName="actions-edit-add"/> <f:translate key="compare" /></f:link.action> <div class="btn-group" role="group"> - <a class="btn btn-default" href="#" onclick="top.launchView('be_users', '{backendUser.uid}'); return false;"><be:spriteManagerIcon iconName="actions-document-info" /></a> + <a class="btn btn-default" href="#" onclick="top.launchView('be_users', '{backendUser.uid}'); return false;"><core:icon identifier="actions-document-info" size="small"/></a> <a class="btn btn-default" href="{bu:editRecord(parameters: 'edit[be_users][{backendUser.uid}]=edit&returnUrl={returnUrl}')}"><be:spriteManagerIcon iconName="actions-document-open" /></a> <f:if condition="{backendUser.currentlyLoggedIn} == 1"> <f:then> diff --git a/typo3/sysext/beuser/Resources/Private/Partials/BackendUser/OnlineListRow.html b/typo3/sysext/beuser/Resources/Private/Partials/BackendUser/OnlineListRow.html index 18fe0db70ae23db18dd1c009fdfafc6876784da7..0ad983f7bb25c8e739cb3d4af2a93017fd8c6c3e 100644 --- a/typo3/sysext/beuser/Resources/Private/Partials/BackendUser/OnlineListRow.html +++ b/typo3/sysext/beuser/Resources/Private/Partials/BackendUser/OnlineListRow.html @@ -1,5 +1,6 @@ {namespace be = TYPO3\CMS\Backend\ViewHelpers} {namespace bu = TYPO3\CMS\Beuser\ViewHelpers} +{namespace core = TYPO3\CMS\Core\ViewHelpers} <f:for each="{onlineUser.sessions}" as="session" iteration="it"> <tr> @@ -42,7 +43,7 @@ </f:else> </f:if> <a class="btn btn-default" href="#" onclick="top.launchView('be_users', '{onlineUser.backendUser.uid}',''); return false;"> - <be:spriteManagerIcon iconName="actions-document-info" /> + <core:icon identifier="actions-document-info" size="small"/> </a> </div> </td> diff --git a/typo3/sysext/beuser/Resources/Private/Partials/BackendUserGroup/IndexListRow.html b/typo3/sysext/beuser/Resources/Private/Partials/BackendUserGroup/IndexListRow.html index 6b198d3113c7bace33283bbd397e36d6fd2db93e..abe3e10da7221c4df19f8d19935eb22f221bd833 100644 --- a/typo3/sysext/beuser/Resources/Private/Partials/BackendUserGroup/IndexListRow.html +++ b/typo3/sysext/beuser/Resources/Private/Partials/BackendUserGroup/IndexListRow.html @@ -1,5 +1,6 @@ {namespace be = TYPO3\CMS\Backend\ViewHelpers} {namespace bu = TYPO3\CMS\Beuser\ViewHelpers} +{namespace core = TYPO3\CMS\Core\ViewHelpers} <tr> <td class="col-icon"> @@ -24,7 +25,7 @@ </td> <td class="col-control"> <div class="btn-group" role="group"> - <a class="btn btn-default" href="#" onclick="top.launchView('be_groups', '{backendUserGroup.uid}'); return false;"><be:spriteManagerIcon iconName="actions-document-info" /></a> + <a class="btn btn-default" href="#" onclick="top.launchView('be_groups', '{backendUserGroup.uid}'); return false;"><core:icon identifier="actions-document-info" size="small"/></a> <a class="btn btn-default" href="{bu:editRecord(parameters: 'edit[be_groups][{backendUserGroup.uid}]=edit&returnUrl={returnUrl}')}"><be:spriteManagerIcon iconName="actions-document-open" /></a> <f:if condition="{backendUserGroup.hidden}"> <f:then> diff --git a/typo3/sysext/core/Classes/Imaging/IconRegistry.php b/typo3/sysext/core/Classes/Imaging/IconRegistry.php index 1669be202f91b0183762d5f2b76bdd238c54e8ba..fd397e53dab2928fe148ab537fb6091b6d7c38d0 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-info' => array( + 'provider' => FontawesomeIconProvider::class, + 'options' => array( + 'name' => 'info-circle', + ) + ), 'actions-document-import-t3d' => array( 'provider' => FontawesomeIconProvider::class, 'options' => array( diff --git a/typo3/sysext/recordlist/Classes/Browser/ElementBrowser.php b/typo3/sysext/recordlist/Classes/Browser/ElementBrowser.php index 84a6805167cb5822ae191cf2ea40506b4e61c445..7aa9d0b3de0076e93a724b7390727cf7c243b1bf 100755 --- a/typo3/sysext/recordlist/Classes/Browser/ElementBrowser.php +++ b/typo3/sysext/recordlist/Classes/Browser/ElementBrowser.php @@ -1992,7 +1992,7 @@ class ElementBrowser { <tr class="file_list_normal"> <td nowrap="nowrap">' . $filenameAndIcon . ' </td> <td>' . $ATag . IconUtility::getSpriteIcon('actions-edit-add', array('title' => $lang->getLL('addToList', TRUE))) . $ATag_e . '</td> - <td nowrap="nowrap">' . $ATag2 . IconUtility::getSpriteIcon('actions-document-info', array('title' => $lang->getLL('info', TRUE))) . $lang->getLL('info', TRUE) . $ATag2_e . '</td> + <td nowrap="nowrap"><a href="' . htmlspecialchars($Ahref) . '" title="' . $lang->getLL('info', TRUE) . '">' . $this->iconFactory->getIcon('actions-document-info', Icon::SIZE_SMALL) . $lang->getLL('info', TRUE) . $ATag2_e . '</td> <td nowrap="nowrap"> ' . $pDim . '</td> </tr>'; $lines[] = ' @@ -2004,7 +2004,7 @@ class ElementBrowser { <tr class="file_list_normal"> <td nowrap="nowrap">' . $filenameAndIcon . ' </td> <td>' . $ATag . IconUtility::getSpriteIcon('actions-edit-add', array('title' => $lang->getLL('addToList', TRUE))) . $ATag_e . '</td> - <td nowrap="nowrap">' . $ATag2 . IconUtility::getSpriteIcon('actions-document-info', array('title' => $lang->getLL('info', TRUE))) . $lang->getLL('info', TRUE) . $ATag2_e . '</td> + <td nowrap="nowrap"><a href="' . htmlspecialchars($Ahref) . '" title="' . $lang->getLL('info', TRUE) . '">' . $this->iconFactory->getIcon('actions-document-info', Icon::SIZE_SMALL) . $lang->getLL('info', TRUE) . $ATag2_e . '</td> <td> </td> </tr>'; } diff --git a/typo3/sysext/recordlist/Classes/RecordList/DatabaseRecordList.php b/typo3/sysext/recordlist/Classes/RecordList/DatabaseRecordList.php index de9bb40453833cec7eba2a846a949e76bb9834fa..9f94d8ee0ac3408fbb091b0d3ecb236aad82eead 100644 --- a/typo3/sysext/recordlist/Classes/RecordList/DatabaseRecordList.php +++ b/typo3/sysext/recordlist/Classes/RecordList/DatabaseRecordList.php @@ -1250,7 +1250,7 @@ class DatabaseRecordList extends AbstractDatabaseRecordList { // "Info": (All records) $onClick = 'top.launchView(\'' . $table . '\', \'' . $row['uid'] . '\'); return false;'; $viewBigAction = '<a class="btn btn-default" href="#" onclick="' . htmlspecialchars($onClick) . '" title="' . $this->getLanguageService()->getLL('showInfo', TRUE) . '">' - . IconUtility::getSpriteIcon('actions-document-info') . '</a>'; + . $this->iconFactory->getIcon('actions-document-info', Icon::SIZE_SMALL) . '</a>'; $this->addActionToCellGroup($cells, $viewBigAction, 'viewBig'); // "Move" wizard link for pages/tt_content elements: if ($permsEdit && ($table === 'tt_content' || $table === 'pages')) { diff --git a/typo3/sysext/sys_action/Classes/ActionTask.php b/typo3/sysext/sys_action/Classes/ActionTask.php index c980767c600e6e9223cd711bb41db68ae72c3bec..a6ae6ff824e6d6a2f34f88d9353ac7373d3ecef5 100644 --- a/typo3/sysext/sys_action/Classes/ActionTask.php +++ b/typo3/sysext/sys_action/Classes/ActionTask.php @@ -175,7 +175,10 @@ class ActionTask implements \TYPO3\CMS\Taskcenter\TaskInterface { FALSE, TRUE ); - $editActionLink = '<a class="edit" href="' . $link . '">' . \TYPO3\CMS\Backend\Utility\IconUtility::getSpriteIcon('actions-document-info', array('title' => $this->getLanguageService()->getLL('edit-sys_action'))) . $this->getLanguageService()->getLL('edit-sys_action') . '</a>'; + $title = 'title="' . $this->getLanguageService()->getLL('edit-sys_action') . '"'; + $icon = $this->iconFactory->getIcon('actions-document-info', Icon::SIZE_SMALL); + $editActionLink = '<a class="edit" href="' . $link . '"' . $title . '>'; + $editActionLink .= $icon . $this->getLanguageService()->getLL('edit-sys_action') . '</a>'; } $actionList[] = array( 'uid' => $actionRow['uid'], @@ -743,7 +746,7 @@ class ActionTask implements \TYPO3\CMS\Taskcenter\TaskInterface { . '&id=' . '&SET[function]=search' . '&SET[search]=query' . '&storeControl[STORE]=-' . $record['uid'] . '&storeControl[LOAD]=1') . '">' - . \TYPO3\CMS\Backend\Utility\IconUtility::getSpriteIcon('actions-document-info') + . $this->iconFactory->getIcon('actions-document-info', Icon::SIZE_SMALL) . $this->getLanguageService()->getLL(($queryIsEmpty ? 'action_createQuery' : 'action_editQuery')) . '</a><br /><br />'; }