TYPO3  7.6
viewpage/ext_tables.php
Go to the documentation of this file.
1 <?php
2 defined('TYPO3_MODE') or die();
3 
4 if (TYPO3_MODE === 'BE' && !(TYPO3_REQUESTTYPE & TYPO3_REQUESTTYPE_INSTALL)) {
5  // Module Web->View
6  \TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerModule(
7  'TYPO3.CMS.Viewpage',
8  'web',
9  'view',
10  'after:layout',
11  array(
12  'ViewModule' => 'show'
13  ),
14  array(
15  'icon' => 'EXT:viewpage/Resources/Public/Icons/module-viewpage.svg',
16  'labels' => 'LLL:EXT:viewpage/Resources/Private/Language/locallang_mod.xlf',
17  'access' => 'user,group'
18  )
19  );
20 }