Skip to content

Commit

Permalink
Use Extension.svg in all places as extension icon
Browse files Browse the repository at this point in the history
Since TYPO3 8.3 it is possible to use extension icons in the Public
directory. See Feature #77349
  • Loading branch information
simonschaufi authored and nicodh committed May 20, 2018
1 parent 61c3b1c commit 5f89594
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Resources/Private/Layouts/Default.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<div class="module-docheader t3js-module-docheader">
<div class="module-docheader-bar module-docheader-bar-navigation t3js-module-docheader-bar t3js-module-docheader-bar-navigation">
<div class="pull-right">
<img class="module-icon absmiddle" src="../typo3conf/ext/extension_builder/Resources/Public/Icons/module-extensionbuilder.svg" width="16" height="16" title="Open in new window" alt="Open in new window">
<img class="module-icon absmiddle" src="../typo3conf/ext/extension_builder/Resources/Public/Icons/Extension.svg" width="16" height="16" title="Open in new window" alt="Open in new window">
<f:be.menus.actionMenu>
<f:be.menus.actionMenuItem label="Introduction" controller="BuilderModule" action="index" />
<f:be.menus.actionMenuItem label="Domain Modelling" controller="BuilderModule" action="domainmodelling"/>
Expand Down
File renamed without changes
Binary file removed ext_icon.png
Binary file not shown.
10 changes: 5 additions & 5 deletions ext_tables.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
'tools',
'extensionbuilder',
'',
array(
[
'BuilderModule' => 'index,domainmodelling,dispatchRpc',
),
array(
],
[
'access' => 'user,group',
'icon' => 'EXT:extension_builder/Resources/Public/Icons/module-extensionbuilder.svg',
'icon' => 'EXT:extension_builder/Resources/Public/Icons/Extension.svg',
'labels' => 'LLL:EXT:extension_builder/Resources/Private/Language/locallang_mod.xlf',
)
]
);
}

0 comments on commit 5f89594

Please sign in to comment.