全局和模块配置交互

时间:2013-01-23 21:53:13

标签: zend-framework2

让我们假设我有全局应用程序配置

return array(

'languages' => array(
    'allowed'   => array('de', 'en'),
),

);

我有模块配置和路由描述。我需要基于全局配置的路由,所以我需要在模块中读取全局应用程序配置,根据语言 - >允许值(段类型路由的约束)组成我的路由

从模块配置脚本获取全局配置值的最佳方法是什么?是否正确操作配置文件中的数据而不是简单的数组返回?

1 个答案:

答案 0 :(得分:2)

你应该多考虑一下你的问题。您希望根据配置创建路径结构。配置可以来自任何地方:模块配置,本地配置和全局配置。因此,很难将模块的配置基于全局配置。

您可以做的是稍后创建路线。例如,您在模块Foo中创建如下配置:

'routes_foo' => array(
  'bar' => array(
    'type'    => 'segment',
    'options' => array(
      'route' => ':locale/foo/bar',
      'constraints' => array(
        'locale' => '%LOCALE%',
      ),
    ),
  ),
),

在您的模块类中:

namespace Foo;

class Module
{
    public function onBootstrap($e)
    {
        $app = $e->getApplication();
        $sm  = $app->getServiceManager();

        $config  = $sm->get('config');
        $routes  = $config['routes_foo');
        $locales = $config['languages']['allowed'];

        $routes = $this->replace($routes, array(
            '%LOCALE%' => sprintf('(%s)', implode('|', $locales)
        );

        $router = $sm->get('router');
        $router->routeFromArray($routes);
    }

    public function replace($array, $variables)
    {
        foreach ($array as $key => $value) {
            if (is_array($value)) {
                $array[$name] = $this->replace($value, $variables);
            }

            if (array_key_exists($value, $variables)) {
                $array[$name] = $variables[$value];
            }
        }

        return $array;
    }
}

您从配置中获取路由(这些路由不会自动注入路由器)会发生什么。在那里,您还可以从全局配置加载所有语言。然后你的“自定义”路由(在几个地方)有一个“魔术”配置键,它将被替换为语言环境的正则表达式约束:(en|de)。然后将解析后的配置注入路由器。