17 lines
456 B
PHP
17 lines
456 B
PHP
<?php
|
|
if (!defined('TYPO3_MODE')) {
|
|
die('Access denied.');
|
|
}
|
|
|
|
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
|
|
'Internetfabrik.' . $_EXTKEY,
|
|
'Faecherplaner',
|
|
array(
|
|
'Faecherplaner' => 'step1, step2, step3, step4, step5, pdf, schuleAutosuggestion, schuleAutosuggestionSelected',
|
|
),
|
|
// non-cacheable actions
|
|
array(
|
|
'Faecherplaner' => 'step1, step2, step3, step4, step5, pdf, schuleAutosuggestion, schuleAutosuggestionSelected',
|
|
)
|
|
);
|