Implement SEO overview as backend module

This commit is contained in:
Björn Fromme
2020-01-28 17:38:39 +01:00
parent 2ea0beb386
commit 31a72ceced
9 changed files with 352 additions and 1 deletions
@@ -21,4 +21,19 @@ call_user_func(function () {
['source' => 'EXT:ep_theme/Resources/Public/images/logo.svg']
);
}
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerModule(
'EP.EpTheme',
'web',
'management',
'after:list',
[
'Backend' => 'listPages',
],
[
'access' => 'user,group',
'labels' => 'LLL:EXT:ep_theme/Resources/Private/Language/locallang_mod.xlf',
'icon' => 'EXT:ep_products/Resources/Public/Icons/logo.svg'
]
);
});