mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-22 17:56:10 +01:00
Merge remote-tracking branch 'origin/develop' into feature/cms-9-update
Conflicts: Documentation/source/changelog.rst Makefile
This commit is contained in:
commit
32a04fb1b0
3 changed files with 19 additions and 2 deletions
|
@ -45,8 +45,7 @@ class ConfigurationContainer implements ConfigurationContainerInterface
|
||||||
{
|
{
|
||||||
$this->settings = $configurationManager->getConfiguration(
|
$this->settings = $configurationManager->getConfiguration(
|
||||||
ConfigurationManagerInterface::CONFIGURATION_TYPE_SETTINGS,
|
ConfigurationManagerInterface::CONFIGURATION_TYPE_SETTINGS,
|
||||||
'SearchCore',
|
'SearchCore'
|
||||||
'search'
|
|
||||||
);
|
);
|
||||||
if ($this->settings === null) {
|
if ($this->settings === null) {
|
||||||
throw new NoConfigurationException('Could not fetch configuration.', 1484226842);
|
throw new NoConfigurationException('Could not fetch configuration.', 1484226842);
|
||||||
|
|
|
@ -25,3 +25,4 @@ prior v1.0.0
|
||||||
changelog/prior-1.0.0/20180308-introduce-php70-type-hints
|
changelog/prior-1.0.0/20180308-introduce-php70-type-hints
|
||||||
changelog/prior-1.0.0/20180306-120-facet-configuration
|
changelog/prior-1.0.0/20180306-120-facet-configuration
|
||||||
changelog/prior-1.0.0/20180926-163-allow-zero-as-typoscript-filter-value
|
changelog/prior-1.0.0/20180926-163-allow-zero-as-typoscript-filter-value
|
||||||
|
changelog/prior-1.0.0/20181106-170-do-not-specify-the-pluginname-in-configurationcontainer
|
||||||
|
|
|
@ -0,0 +1,17 @@
|
||||||
|
Feature 170 "Do not specify the pluginName in ConfigurationContainer"
|
||||||
|
===============================================================================
|
||||||
|
|
||||||
|
Prior to the change it was not possible to create a second plugin in a
|
||||||
|
separate extension. The pluginName for the configuration was set to `search`.
|
||||||
|
The problem was that the plugin specific settings could not be fetched.
|
||||||
|
|
||||||
|
The configuration in `plugin.tx_exampleextension_pluginkey.settings {..}` and
|
||||||
|
from flexform were not fetched.
|
||||||
|
|
||||||
|
Now the pluginName is not set and the ConfigurationManager checks which plugin
|
||||||
|
is used in the current context.
|
||||||
|
|
||||||
|
It is now possible to create a second plugin. For example if you want to cache
|
||||||
|
the output of your query or the filters you specified.
|
||||||
|
|
||||||
|
See :issue:`170`.
|
Loading…
Reference in a new issue