mirror of
https://github.com/FriendsOfTYPO3/feedit.git
synced 2024-11-08 17:06:09 +01:00
[FOLLOWUP][TASK] Replace sprite icon "actions-document-open" with IconFactory
Replaces IconUtility::getSpriteIcon calls for the icon actions-document-open which have been missed in the initial patchset with the new IconFactory. Resolves: #68845 Releases: master Change-Id: I7265c21ec93e1ca15869039329a86fe04e17e940 Reviewed-on: http://review.typo3.org/43192 Reviewed-by: Christian Kuhn <lolli@schwarzbu.ch> Tested-by: Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by: Frank Nägler <frank.naegler@typo3.org> Tested-by: Frank Nägler <frank.naegler@typo3.org>
This commit is contained in:
parent
5ac25867ff
commit
7fbb9d73e0
1 changed files with 4 additions and 7 deletions
|
@ -110,7 +110,7 @@ class FrontendEditPanel {
|
|||
$panel .= $this->backendUser->adminPanel->ext_makeToolBar();
|
||||
}
|
||||
if (isset($allow['edit'])) {
|
||||
$icon = IconUtility::getSpriteIcon('actions-document-open', array('title' => $this->backendUser->extGetLL('p_editRecord')));
|
||||
$icon = '<span title="' . htmlspecialchars($this->backendUser->extGetLL('p_editRecord')) . '">' . $this->iconFactory->getIcon('actions-document-open', Icon::SIZE_SMALL) . '</span>';
|
||||
$panel .= $this->editPanelLinkWrap($icon, $formName, 'edit', $dataArr['_LOCALIZED_UID'] ? $table . ':' . $dataArr['_LOCALIZED_UID'] : $currentRecord);
|
||||
}
|
||||
// Hiding in workspaces because implementation is incomplete
|
||||
|
@ -213,12 +213,9 @@ class FrontendEditPanel {
|
|||
// Special content is about to be shown, so the cache must be disabled.
|
||||
$this->frontendController->set_no_cache('Display frontend edit icons', TRUE);
|
||||
$iconTitle = $this->cObj->stdWrap($conf['iconTitle'], $conf['iconTitle.']);
|
||||
$optionsArray = array(
|
||||
'title' => htmlspecialchars($iconTitle, ENT_COMPAT, 'UTF-8', FALSE),
|
||||
'class' => 'frontEndEditIcons',
|
||||
'style' => $conf['styleAttribute'] ? htmlspecialchars($conf['styleAttribute']) : ''
|
||||
);
|
||||
$iconImg = $conf['iconImg'] ? $conf['iconImg'] : IconUtility::getSpriteIcon('actions-document-open', $optionsArray);
|
||||
$iconImg = '<span title="' . htmlspecialchars($iconTitle, ENT_COMPAT, 'UTF-8', FALSE) . '" class="frontEndEditIcons" style="' . ($conf['styleAttribute'] ? htmlspecialchars($conf['styleAttribute']) : '') . '">'
|
||||
. $this->iconFactory->getIcon('actions-document-open', Icon::SIZE_SMALL)
|
||||
. '</span>';
|
||||
$nV = GeneralUtility::_GP('ADMCMD_view') ? 1 : 0;
|
||||
|
||||
$url = BackendUtility::getModuleUrl(
|
||||
|
|
Loading…
Reference in a new issue