mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-23 09:36:12 +01:00
13 lines
No EOL
351 B
PHP
13 lines
No EOL
351 B
PHP
<?php
|
|
|
|
namespace Codappix\SearchCore\Compatibility\Version87;
|
|
|
|
use Codappix\SearchCore\Compatibility\ExtensionConfigurationInterface;
|
|
|
|
class ExtensionConfiguration implements ExtensionConfigurationInterface
|
|
{
|
|
public function get($extensionKey)
|
|
{
|
|
return unserialize($GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf'][$extensionKey]);
|
|
}
|
|
} |