mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-23 13:36:11 +01:00
13 lines
351 B
PHP
13 lines
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]);
|
||
|
}
|
||
|
}
|