‪TYPO3CMS  10.4
ext_tables.php
Go to the documentation of this file.
1 <?php
2 
3 defined('TYPO3_MODE') or die();
4 
5 \‪TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addModule(
6  'web',
7  'ViewpageView',
8  'after:layout',
9  null,
10  [
11  'routeTarget' => \‪TYPO3\CMS\Viewpage\Controller\ViewModuleController::class . '::showAction',
12  'access' => 'user,group',
13  'name' => 'web_ViewpageView',
14  'icon' => 'EXT:viewpage/Resources/Public/Icons/module-viewpage.svg',
15  'labels' => 'LLL:EXT:viewpage/Resources/Private/Language/locallang_mod.xlf',
16  ]
17 );
‪TYPO3