Initial commit
This commit is contained in:
@@ -0,0 +1,55 @@
|
||||
<?php
|
||||
|
||||
defined('TYPO3_MODE') or die();
|
||||
|
||||
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_tcemain.php']['processDatamapClass'][$_EXTKEY] =
|
||||
\EP\EpTheme\Hook\Tcemain::class;
|
||||
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['cms/layout/class.tx_cms_layout.php']['tt_content_drawItem'][$_EXTKEY] =
|
||||
\EP\EpTheme\Hook\PageLayoutView::class;
|
||||
|
||||
$GLOBALS['TYPO3_CONF_VARS']['FE']['cacheHash']['excludedParameters'][] = 'ref';
|
||||
|
||||
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
|
||||
'EP.EpTheme',
|
||||
'SimpleForm',
|
||||
[
|
||||
'Form' => 'simpleForm',
|
||||
],
|
||||
[
|
||||
'Form' => 'simpleForm',
|
||||
]
|
||||
);
|
||||
|
||||
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
|
||||
'EP.EpTheme',
|
||||
'FullForm',
|
||||
[
|
||||
'Form' => 'fullForm',
|
||||
],
|
||||
[
|
||||
'Form' => 'fullForm',
|
||||
]
|
||||
);
|
||||
|
||||
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
|
||||
'EP.EpTheme',
|
||||
'FullForm',
|
||||
[
|
||||
'Form' => 'fullForm',
|
||||
],
|
||||
[
|
||||
'Form' => 'fullForm',
|
||||
]
|
||||
);
|
||||
|
||||
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
|
||||
'EP.EpTheme',
|
||||
'Ajax',
|
||||
[
|
||||
'AjaxForm' => 'processForm',
|
||||
],
|
||||
[
|
||||
'AjaxForm' => 'processForm',
|
||||
]
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user