mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-01 12:16:12 +01:00
Daniel Siepmann
32df6ff8ec
In order to use the plugin with different configurations on same site, we can not use ConfigurationContainerInterface as a Singleton. This would prevents us from using different configuration setups.
47 lines
1.5 KiB
PHP
47 lines
1.5 KiB
PHP
<?php
|
|
namespace Codappix\SearchCore\Configuration;
|
|
|
|
/*
|
|
* Copyright (C) 2016 Daniel Siepmann <coding@daniel-siepmann.de>
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
* 02110-1301, USA.
|
|
*/
|
|
|
|
/**
|
|
* Container of all configurations for extension.
|
|
* Always inject this to have a single place for configuration.
|
|
*/
|
|
interface ConfigurationContainerInterface
|
|
{
|
|
/**
|
|
* Returns the option defined by section and key.
|
|
* May throw an exception if it's not set or is null.
|
|
*
|
|
* @param string $path In dot notation. E.g. indexer.tca.allowedTables
|
|
* @return mixed
|
|
*
|
|
* @throws InvalidArgumentException
|
|
*/
|
|
public function get(string $path);
|
|
|
|
/**
|
|
* Same as get but will not throw an exception but return null.
|
|
*
|
|
* @param string $path In dot notation.
|
|
* @return mixed|null
|
|
*/
|
|
public function getIfExists(string $path);
|
|
}
|