forked from lochmueller/google_services
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_tables.php
executable file
·31 lines (27 loc) · 1.06 KB
/
ext_tables.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
if (!defined('TYPO3_MODE')) {
die('Access denied.');
}
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addStaticFile(
'google_services',
'Configuration/TypoScript',
'Google Services'
);
/**
* Sitemap
*/
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerPlugin('google_services', 'piSitemap', 'Google Services: Sitemap');
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_addlist']['googleservices_pisitemap'] = 'pi_flexform';
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue(
'googleservices_pisitemap',
'FILE:EXT:google_services/Configuration/FlexForms/piSitemap.xml'
);
/**
* Document
*/
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerPlugin('google_services', 'piDocument', 'Google Services: Document View');
$GLOBALS['TCA']['tt_content']['types']['list']['subtypes_addlist']['googleservices_pidocument'] = 'pi_flexform';
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue(
'googleservices_pidocument',
'FILE:EXT:google_services/Configuration/FlexForms/piDocument.xml'
);