mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-27 04:18:55 +00:00
[ticket/15987] Add container extension to support tables "array access"
PHPBB3-15987
This commit is contained in:
parent
fe04f59ca2
commit
9c1baf0fd7
2 changed files with 60 additions and 1 deletions
|
@ -158,7 +158,10 @@ class container_builder
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$this->container_extensions = array(new extension\core($this->get_config_path()));
|
$this->container_extensions = [
|
||||||
|
new extension\core($this->get_config_path()),
|
||||||
|
new extension\tables(),
|
||||||
|
];
|
||||||
|
|
||||||
if ($this->use_extensions)
|
if ($this->use_extensions)
|
||||||
{
|
{
|
||||||
|
|
56
phpBB/phpbb/di/extension/tables.php
Normal file
56
phpBB/phpbb/di/extension/tables.php
Normal file
|
@ -0,0 +1,56 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* This file is part of the phpBB Forum Software package.
|
||||||
|
*
|
||||||
|
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||||
|
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||||
|
*
|
||||||
|
* For full copyright and license information, please see
|
||||||
|
* the docs/CREDITS.txt file.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace phpbb\di\extension;
|
||||||
|
|
||||||
|
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
||||||
|
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Container tables extension
|
||||||
|
*/
|
||||||
|
class tables extends Extension
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Loads a specific configuration.
|
||||||
|
*
|
||||||
|
* @param array $configs An array of configuration values
|
||||||
|
* @param ContainerBuilder $container A ContainerBuilder instance
|
||||||
|
*
|
||||||
|
* @throws \InvalidArgumentException When provided tag is not defined in this extension
|
||||||
|
*/
|
||||||
|
public function load(array $configs, ContainerBuilder $container)
|
||||||
|
{
|
||||||
|
if (!$container->hasParameter('tables'))
|
||||||
|
return;
|
||||||
|
|
||||||
|
$tables = $container->getParameter('tables');
|
||||||
|
|
||||||
|
foreach ($tables as $table_name => $table_value)
|
||||||
|
{
|
||||||
|
$container->setParameter('tables.' . $table_name, $table_value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the recommended alias to use in XML.
|
||||||
|
*
|
||||||
|
* This alias is also the mandatory prefix to use when using YAML.
|
||||||
|
*
|
||||||
|
* @return string The alias
|
||||||
|
*/
|
||||||
|
public function getAlias()
|
||||||
|
{
|
||||||
|
return 'tables';
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue