20 lines
271 B
PHP
20 lines
271 B
PHP
<?php
|
|
if (!defined('TYPO3_MODE')) {
|
|
die ('Access denied.');
|
|
}
|
|
|
|
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
|
|
'TYPO3.' . $_EXTKEY,
|
|
'Main',
|
|
array(
|
|
'SocialButton' => 'index',
|
|
|
|
),
|
|
// non-cacheable actions
|
|
array(
|
|
'SocialButton' => '',
|
|
|
|
)
|
|
);
|
|
|
|
?>
|