aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/di/extension/tables.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2019-05-05 17:23:16 +0200
committerMarc Alexander <admin@m-a-styles.de>2019-05-14 20:29:29 +0200
commit9c1baf0fd774c8fa30bd5192fd8d097996b35e56 (patch)
tree765567668ab1ddd73083ef97155654a7ce814023 /phpBB/phpbb/di/extension/tables.php
parentfe04f59ca2c7d1a813531badada10bc9431482da (diff)
downloadforums-9c1baf0fd774c8fa30bd5192fd8d097996b35e56.tar
forums-9c1baf0fd774c8fa30bd5192fd8d097996b35e56.tar.gz
forums-9c1baf0fd774c8fa30bd5192fd8d097996b35e56.tar.bz2
forums-9c1baf0fd774c8fa30bd5192fd8d097996b35e56.tar.xz
forums-9c1baf0fd774c8fa30bd5192fd8d097996b35e56.zip
[ticket/15987] Add container extension to support tables "array access"
PHPBB3-15987
Diffstat (limited to 'phpBB/phpbb/di/extension/tables.php')
-rw-r--r--phpBB/phpbb/di/extension/tables.php56
1 files changed, 56 insertions, 0 deletions
diff --git a/phpBB/phpbb/di/extension/tables.php b/phpBB/phpbb/di/extension/tables.php
new file mode 100644
index 0000000000..99655dda3d
--- /dev/null
+++ b/phpBB/phpbb/di/extension/tables.php
@@ -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';
+ }
+}